vuex的数据快速绑定到v-model上面

<input v-model="test">
 
 
 
JS:

computed: {
  test: {
    get () {
      return this.$store.state.test
    },
    set (val) {
      this.$store.commit('setTest', val)
    }
  }
}
posted @ 2020-08-17 16:54  昵称cart  阅读(299)  评论(0编辑  收藏  举报