Vuex状态监听mapState与普通的局部计算属性混合使用
mapState如果和普通的局部计算属性混合使用,使用对象展开运算符(…)
data () {
return {
order: {
orderId: '',
amount: 0.0
}
}
},
computed: {
amount () {
return this.order.amount
},
...mapState({
order_create_watcher: state => state.order.order_create
order_confirm_watcher: state => state.order.order_confirm
})
},
watch: {
amount: 'amountWatcher',
order_create_watcher: {
handler: 'orderCreateWatcher',
deep: true
},
order_confirm_watcher: {
handler: 'orderConfirmWatcher',
deep: true
}
},
methods: {
amountWatcher (val, oldVal) {
...
},
orderCreateWatcher (val, oldVal) {
...
},
orderConfirmWatcher (val, oldVal) {
...
}
}
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/12/mixed-use-of-vuex-state-monitoring-mapstate-and-ordinary-local-computing-attributes/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报
Vuex状态监听mapState与普通的局部计算属性混合使用
mapState如果和普通的局部计算属性混合使用,使用对象展开运算符(…)
data () {
return {
order: {
orderId: '',
amount: 0.0
……
文章目录
关闭
共有 0 条评论