vue添加全局变量,修改与取值

1,760 阅读1分钟

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;