Separating vuex stores for dynamically created components

For the first operation of NEW button – generating components – we add mutation to our store.js mutations: { addJob (state) { state.jobs.push(state.jobs.length + 1) … } Second, creating local modules. Here we’re going to use reusableModule to generated multiple instances of a module. That module we keep in separate file for convinience. Also, note … Read more

tech