// 在从组件的computed中 computed: { user: { get() { return this.$store.state.user }, set(v) { // 使用vuex中的mutations中定义好的方法来改变 this.$store.commit('USER', v) } }
}
// 在组件中就可以使用
<input v-modle="user" />
// 在从组件的computed中 computed: { user: { get() { return this.$store.state.user }, set(v) { // 使用vuex中的mutations中定义好的方法来改变 this.$store.commit('USER', v) } }
}
// 在组件中就可以使用
<input v-modle="user" />