vue 为单独一个页面添加特定样式

beforeCreate中用js添加样式
在beforDestory钩子中用js移除样式


beforeCreate: function() { document.getElementsByTagName("body")[0].className="active";
},

beforeDestroy: function() { document.body.removeAttribute("class","active"); }
posted @ 2019-06-26 10:18  执笔画浮尘·  阅读(1209)  评论(0编辑  收藏  举报