用了modules之后,mapstate那样写找不到,要这样写,把对应的module加上 大坑
...mapState({
type: state => state.step1.type
}),
//或者 传递2个参数 第一个传模块名
...mapState('moduleName',{
type: state => state.step1.type
}),
用了modules之后,mapstate那样写找不到,要这样写,把对应的module加上 大坑
...mapState({
type: state => state.step1.type
}),
//或者 传递2个参数 第一个传模块名
...mapState('moduleName',{
type: state => state.step1.type
}),