每次输入、复选框或选择单选按钮时,我都会遇到问题。dom是滞后或延迟响应。
每个组件都有这样的代码。
<template>
<div>
..some temp ex.
<input v-model="someData.name"/>
</div>
</template>
<script>
import { mapActions } from "vuex"
export default ({
data: () => ({
someData: {}
}),
watch:{
someData:{
handler(obj){
this.putDataToVuex({ someData: obj })
}
}
},
methods:{
...mapActions(`vuexname`,["putDataToVuex"])
}
})
</script>
发布于 2019-04-30 05:48:56
难怪你有100+商店的subs。这是不对的
https://stackoverflow.com/questions/55913539
复制相似问题