首页 > 其他 > 详细

Vuex

时间:2020-10-30 22:31:43      阅读:42      评论:0      收藏:0      [点我收藏+]

应用于大型项目,小页面没必要使用,主要应用于数据管理

在main.js注册

import store from ‘/store‘

new Vue({

store//全局注册store ,在vue任意组件内通过this.$store访问vuex

})

在store文件夹加中,创建index.js

在index.js中引入vuex

import Vue from ‘vue‘

import Vuex from ‘vuex‘

Vue.use(Vuex)

let store=new Vuex.Store({

state(){},

mutations(){},

actions(){},

getters(){}

})

Vuex

原文:https://www.cnblogs.com/aaaaap/p/13904198.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!