企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[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 } ~~~