vue全局参数

/* eslint-disable no-new */
new Vue({
  el: '#app',
  router,
  components: { App },
  template: '',
  data:function(){
      return{
          wbWinList: []   // 定义的变量,全局参数
      }
  },
})
//使用全局参数
// this.$root.backgroundColor = 666;

其它页面如果想监听改变

  //监听全局变量,更新
  watch: {
    '$root.backgroundColor':{
        handler(){

        },
        deep: true
    },
  },

vue全局参数_第1张图片
vue全局参数_第2张图片

你可能感兴趣的:(vue.js,javascript,前端)