mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-28 00:22:05 +00:00
10 lines
123 B
JavaScript
10 lines
123 B
JavaScript
|
export const state = {
|
||
|
baz: 'Vuex Nested Modules'
|
||
|
}
|
||
|
|
||
|
export const getters = {
|
||
|
baz (state) {
|
||
|
return state.baz
|
||
|
}
|
||
|
}
|