Created
April 5, 2020 16:11
-
-
Save mercs600/0dfa3bcab6598af1f0ee715463c84778 to your computer and use it in GitHub Desktop.
nuxt-exercise-6-vuex-register
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const state = () => ({ | |
menu: [] | |
}) | |
export const mutations = { | |
setMenu(state, payload) { | |
state.menu = payload | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment