uni-app 全局變量globalData的使用

1:在App.vue中

要這樣使用 ,let _this = this

_this.$options.global.platformDeal = res.platform;

 

2:在其它頁面使用

import app from "../../App.vue"

created() {
	const _this = this;
	_this.dynamicIcon = app.global.headIcon;
}

 

官網沒去描述,這個坑踩得

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章