美文网首页Vue
vue设置body背景色

vue设置body背景色

作者: 左木北鱼 | 来源:发表于2019-03-18 14:59 被阅读0次

1. 问题:

开发过程中,可能不同路由页面背景色不一样,可以通过js来设置。

2. 解决:

  1. 直接在当前的page内设置
mounted() {
  document.querySelector('body').setAttribute('style', 'background-color:#f7f7f7')
},
beforeDestroy() {
  document.querySelector('body').removeAttribute('style')
}
  1. 在全局路由钩子添加
  // 设置背景色
  if (to.meta.background === 'gray') {
    document.querySelector('body').setAttribute('style', 'background: #f7f7f7')
  } else {
    document.querySelector('body').setAttribute('style', 'background: #fffff')
  }

相关文章

网友评论

    本文标题:vue设置body背景色

    本文链接:https://www.haomeiwen.com/subject/avnvmqtx.html