mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-27 16:12:12 +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
|
|
}
|
|
}
|