🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ### vue2.x vuex定义 * [ ] 建立文件 store 文件夹 * [ ] store 文件夹内建立三个文件 ``` store module ## vuex模块 city.js navbar.js index.js ## vuex 主入口文件 ``` * [ ] city.js ~~~ const state = () => ({ list: [] }) const mutations = { add(state, text) { state.list.push(text) } } const actions = { add: ({commit}, text) => { commit('add', text) } } export default { namespaced: true, state, mutations, actions } ~~~