【发布时间】:2020-08-16 12:54:49
【问题描述】:
我正在使用Material Design Icons for Vue.js 库,当我尝试显示一个图标时,它会显示两次,只能通过删除包含较小副本的::before 来修复。
(我通常会将此代码放在 JSFiddle 中,但不能在其中使用 mdi-vue 库)
HTML
<div id="app">
<PowerIcon />
<div class='fixed'>
<PowerIcon />
</div>
</div>
JS
import PowerIcon from 'mdi-vue/Power'
new Vue({
el: "#app",
components: {
PowerIcon
}
})
CSS
.fixed .mdi-power::before {
display: none;
}
结果:
我是在错误地使用库还是这只是一个错误?
【问题讨论】:
标签: vue.js icons material-design