vex使用...mapActions报错解决办法
vuex2增加了mapGetters和mapActions的方法,借助stage2的Object Rest Operator
所在通过
methods:{
...mapActions([
‘increment‘
])
}
酱紫去拿到action。但是我们需要安装babel-preset-stage-2的依赖。
可以使用babel插件, 该插件为
babel-plugin-transform-object-rest-spread
使用方法:
npm install --save-dev babel-plugin-transform-object-rest-spread
新建.babelrc
配置文件(切记不要忘记!!!)
{ "plugins": ["transform-object-rest-spread"] }
谢谢大家!!!
原文地址:https://www.cnblogs.com/maqingyuan/p/9284916.html
时间: 2024-10-12 12:42:23