Nuxt/examples/vuex-store-modules/store/todos.js

17 lines
213 B
JavaScript

export const state = {
list: []
}
export const mutations = {
add (state, { text }) {
state.list.push({
text,
done: false
})
},
toggle (state, todo) {
todo.done = !todo.done
}
}