uniapp中引入VUEX

uniapp中引入VUEX,第1张

1.项目根目录新建store文件夹===》index.js

2.main.js引入

3.main.js挂载

4.VUEX的index.js编写代码

import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
 
const store = new Vuex.Store({
    state: {
    },
    getters: {
    },
    mutations: {
    },
    actions: {
    }
})
export default store

5.view页面使用vuex

 

 

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/943685.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-18
下一篇 2022-05-18

发表评论

登录后才能评论

评论列表(0条)

保存