``` <input v-model="message"> // ... computed: { message: { get: function () { return store.state.message }, set: function (newValue) { store.dispatch("CHANGE_MESSAGE", newValue) } } } //... ```