Nuxt/test/fixtures/basic/store/bab/index.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

10 lines
124 B
JavaScript

export const state = () => ({
babVal: 10
})
export const getters = {
getBabVal (state) {
return state.babVal
}
}