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

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


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

beforeDestroy: function() { document.body.removeAttribute("class","active"); }

猜你喜欢

转载自www.cnblogs.com/xiao-911/p/11088384.html
今日推荐