Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

问题描述

我在main.js里面把app全局导出

export const appMain = new Vue({
  ...App,
  store
})

--any.js

    import {appMain} from 'path/to/main.js'
    function geStore(){
        console.log(appMain)
        // uni app 想获取globalData
        console.log(appMain.globalData) // 得到undefined
        console.log(appMain.$store) // 得到也是undefined 
    }

你期待的结果是什么?实际看到的错误信息又是什么?

我希望不是两个undefined, 而是可以直接对 $store 和 globalData 里面的属性进行操作


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.6k views
Welcome To Ask or Share your Answers For Others

1 Answer

this.$store不行?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...