vue 设置当前页背景色

beforeRouteEnter(to, from, next) {
    // 添加背景色
    document.querySelector('body').setAttribute('style', 'background-color:#f9f9f9')
    next()
  },
  beforeRouteLeave(to, from, next) {
    // 去除背景色
    document.querySelector('body').setAttribute('style', '')
    next()
  }

 

posted @ 2019-01-23 14:17  这个男人  阅读(6547)  评论(1编辑  收藏  举报