Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

【vue】vue 的数据双向绑定和 vuex 是否冲突 #60

Open
yayxs opened this issue Apr 7, 2021 · 0 comments
Open

【vue】vue 的数据双向绑定和 vuex 是否冲突 #60

yayxs opened this issue Apr 7, 2021 · 0 comments

Comments

@yayxs
Copy link
Owner

yayxs commented Apr 7, 2021

双向绑定和 vuex 是否冲突

const store = new Vuex.Store({
  state: {
    obj: {
      message: 'hello',
    },
  },
  mutations: {
    increment(state) {},
  },
})
var vm = new Vue({
  el: '#app',
  store,
  data() {
    return {}
  },
  computed: {
    message() {
      return this.$store.state.obj.message
    },

    //   ...mapState({
    //     message: (state) => state.obj.message,
    //   }),
  },
  methods: {
    updateMessage(e) {
      this.$store.commit('updateMessage', e.target.value)
    },
  },
})

vue.js:634 [Vue warn]: Computed property "message" was assigned to but it has no setter.

(found in )

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant