在main.js中定义

new Vue({
	el: '#app',
	router,
	data: function(){
		return {
			pcNumnow: 'PC20200924',//定义的全局变量
		}
	},
	components: {
		App
	},
	template: '<App/>'
})

在页面调用

let demo= this.$root.pcNumnow
//即demo的值为PC20200924

//修改全局变量的值
this.$root.pcNumnow= "PC20200925"
//此时全局变量的值就变为 PC20200925
Logo

前往低代码交流专区

更多推荐