123456789101112131415161718 |
- export const state = () => ({
- list: []
- })
-
- export const mutations = {
- add (state, text) {
- state.list.push({
- text: text,
- done: false
- })
- },
- remove (state, { todo }) {
- state.list.splice(state.list.indexOf(todo), 1)
- },
- toggle (state, todo) {
- todo.done = !todo.done
- }
- }
|