You can share states between components using vuex or a simple store (object literal). In both configurations, you will find the store (instance of Vuex.Store
or {}
) in src/store.js
.
You will find a basic counter example in the src/store.js
. Refer to the official documentation for more informations.
If you think Vuex is an overkill for your project, you can keep it simple and share your states by storing reactive data into the store.
Note: you should read from
this.state
but write to thestore
object. See example below.
import store from "store"
export default {
data() {
return {
state: store
}
},
methods: {
toggleOption () {
// Write to the store
store.option = !store.option
}
}
}
and then you can use it in the templates
<button @click="@toggleOption"></button>