如何给vue-cli项目中的body添加样式,从而达到改变背景颜色的效果
<script>export default {beforeCreate: function() {document.getElementsByTagName("body")[0].className="bgColor";},beforeDestroy: function() {...
·
<script>
export default {
beforeCreate: function() {
document.getElementsByTagName("body")[0].className="bgColor";
},
beforeDestroy: function() {
document.body.removeAttribute("class","bgColor");
}
}
</script>
然后给’‘bgColor’'添加对应的背景颜色就ok了
更多推荐
已为社区贡献1条内容
所有评论(0)