uni-app中Vuex的引用


 

 

//store 中  store.js   
import Vue from 'vue'
import Vuex from 'vuex'

Vue.use(Vuex)

const store = new Vuex.Store({
    state: { 
        author: 'Youngmon' 
    },
    mutations: {
        author(state, newName) {
            state.author = newName;
        } 
    },
    actions: { }
})

export default store

/**
//main.js    新增
import store from './store' 
Vue.prototype.$store = store




//demo.vue
 this.$store.commit("author","yongmao");


computed: {
    author() {
        return this.$store.state.author
    }
}




 */

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM