vue.js vuex store(参考)
Posted 苏州城外的微笑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue.js vuex store(参考)相关的知识,希望对你有一定的参考价值。
基于前文所述,Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式。
深入了解请链接
vuex文档:https://vuex.vuejs.org/zh/
安装
cnpm install vuex --save
在项目 src 下新建 request/store.js文件,建立一个简单的 store 状态管理
import Vue from \'vue\' import vuex from "vuex"; Vue.use(vuex) const store = new vuex.Store({ state: { token: null }, mutations: { } }) export default store
在 main.js 中引入 store
import store from "./request/store"; new Vue({ el: "#app", router, store, components: { App }, template: "<App/>" });
以上是关于vue.js vuex store(参考)的主要内容,如果未能解决你的问题,请参考以下文章