美文网首页
uniapp中引入Vuex

uniapp中引入Vuex

作者: 扶得一人醉如苏沐晨 | 来源:发表于2023-05-23 18:27 被阅读0次

    一、uniapp中有自带vuex插件,直接引用即可

    引入和使用与Vue中一模一样,可以参考如下文章
    https://www.jianshu.com/p/e8b442b52a55

    二、在项目中新建文件夹store,在新建一个index.js

    image.png

    index.js

    import Vue from 'vue'
    
    import Vuex from 'vuex'
    
    Vue.use(Vuex)
    
    import user from '@/store/modules/user.js'
    import getters from './getters'
    export default new Vuex.Store({
    
        modules: {
            user
        },
        getters
    })
    

    三、main.js引入

    import store from './store'
    const app = new Vue({
        ...App,
        store
    })
    app.$mount()
    

    相关文章

      网友评论

          本文标题:uniapp中引入Vuex

          本文链接:https://www.haomeiwen.com/subject/tnwxedtx.html