uni-app使用vuex

Posted 进军码农

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uni-app使用vuex相关的知识,希望对你有一定的参考价值。

        //1.根目录创建store文件->index.js
        import Vue from ‘vue’
        import Vuex from ‘vuex’

        Vue.use(Vuex)

        const store = new Vuex store ({
            state: {
                name: ‘’
            },
            getters: {
                
            },
            mutations: {
    
            },
            actions: {

            }
        })
        
        export default store

    //2.main.js下引入和挂载
        import store from ‘./store’
        Vue.prototype.$store = store
        const app = new Vue ({
            store
        })

       //3.页面引用
        <template>
            <div>
                {{name}}
            </div>
        </template>
        <scipt>
            import {mapState} from ‘vuex’
            export default {
                onLoad() {
                    console.log(this.$store)
                },
                computed: {
                    …mapState([‘name’])
                }
            }
        </script>
                

 

以上是关于uni-app使用vuex的主要内容,如果未能解决你的问题,请参考以下文章

uni-app中应用vuex示例

【uni-app】Vuex介绍和使用

uni-app vuex的安装和使用

uni-app第二节-vuex实现购物车

uni-app 保持登录状态 (Vuex)

uni-app封装vuex