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

6 lines
63 B
JavaScript

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