企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
![](https://img.kancloud.cn/a8/b3/a8b393b64a98ddbd9f50617b27eed210_2852x1600.png) **vuex使用** 1.安装 `npm install vuex --save` 2.在`src`目录创建`store`目录,然后在这目录建`index.js` 代码如下: ~~~ import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) export default new Vuex.Store({ state: { // state }, actions: { // actions }, mutations: { // mutations } }) ~~~ 3.在根组件里引入 ~~~ import store from './store/index' ~~~ 然后把`store`挂载在`vue`对象中 ~~~ new Vue({ el: '#app', router, store, components: {App}, template: '<App/>' }) ~~~