美文网首页
vue之修改单页面背景颜色

vue之修改单页面背景颜色

作者: 毛尖哥 | 来源:发表于2020-11-23 15:35 被阅读0次

vue的特点在于组件化,可以轻便开发单页面应用,但弊端就是它没能像原生操控各自的body节点,因为所有的页面都拥有同一个body。这就难受了,如果希望设置单个页面的背景颜色而又不影响其他页面,那怎么办?

第一种方式(不建议)

beforeCreate() { document.querySelector('body').setAttribute('style','background-color:rgb(245,245,245)')},

beforeDestroy(){ document.querySelector('body').setAttribute('style', "background-color:''")}

第二种

beforeRouteEnter(to, from, next) {

    // 添加背景色document.querySelector('body').setAttribute('style', 'background-color:#f9f9f9')

    next()

  },

  beforeRouteLeave(to, from, next) {

    // 去除背景色document.querySelector('body').setAttribute('style', '')

    next()

  }

相关文章

网友评论

      本文标题:vue之修改单页面背景颜色

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