我输入组件:
import 'vuetify/dist/vuetify.min.css'
然后在浏览器中显示的index.html
中创建了元素:
<style type="text/css">
/*!
* Vuetify v1.3.7
...
</style>
但是此样式包含与其他样式不兼容的!important
,因此我想简单地使用hack并以此方式禁用它,对此进行了说明
https://guides.codechewing.com/js/disable-enable-stylesheet-javascript
不幸的是,命令vue-cli-service serve
创建了许多这样的样式,我不知道该如何精确选择该元素。
所以我想将类或它添加到注入HTML的style element
中,例如。
<style type="text/css" id="vuetify-style">
/*!
* Vuetify v1.3.7
...
</style>
import
是否可行,还是我应该手动修改public/index.html
?