其他分享
首页 > 其他分享> > vue ...mapActions()含义 (es6 剩余操作符)

vue ...mapActions()含义 (es6 剩余操作符)

作者:互联网

mapActions() 返回的是一个对象, 用了 ... 扩展符后,才可以放进一个对象里,和其他组件内定义的 method 在同一个 methods 对象。

 
{
    methods: mapActions() // 如果没有其它组件内的定义的方法,可以这样写
}
 
{
    methods: {
        ...mapActions(),// 如果有其他定义的方法
        otherMethod1 () {},
        otherMethod2 () {}
    }
}


 
https://segmentfault.com/q/1010000009658513
 

标签:...,vue,methods,es6,对象,mapActions,组件,定义
来源: https://blog.51cto.com/u_15283585/2955096