启用外部样式:
自定义组件:
v-tag
在html 引入
在组件写外部样式的css :
.ex-tag { background-color: #fffbdd ; }
在组件使用该外部的样式
这个时候我们发现没有效果
我们应该使用!important 强制覆盖样式
.ex-tag { background-color: #fffbdd !important; }
效果:
原文地址:https://www.cnblogs.com/guangzhou11/p/11470590.html
时间: 2024-10-08 10:44:46