Nuxt/examples/vuex-store/store/todos/getters.js
2019-02-19 09:35:51 +00:00

6 lines
62 B
JavaScript

export default {
todos(state) {
return state.list
}
}