Nuxt/examples/vuex-store/store/articles.js
pooya parsa e7cc2757c3 refactor: update eslint-config to 1.x
Co-authored-by: Alexander Lichter <manniL@gmx.net>
2019-07-10 15:15:49 +04:30

20 lines
276 B
JavaScript

export const state = () => ({
list: [
'Lorem ipsum',
'dolor sit amet',
'consetetur sadipscing elitr'
]
})
export const mutations = {
add (state, title) {
state.list.push(title)
}
}
export const getters = {
get (state) {
return state.list
}
}