main.js 里添加初始值
new Vue({
el: '#app',
router,
data:function(){
return{
GLOBALFlag:false // 添加全局变量
}
},
store,
components: { App },
template: '<App/>'
})
取值
let flag = this.$root.GLOBALFlag
修改
this.$root.GLOBALFlag = false;