【发布时间】:2022-01-16 22:48:36
【问题描述】:
我已经构建了一些组件,例如按钮,并且我想在我的网站的几乎所有地方使用和重用。
我已经创建了插件
Object.entries(components).forEach((([name, component]) => {
Vue.component(name, component)
}))
并在 nuxt.config 中注册
plugins [
'@/plugins/components'
]
<style lang="scss">
.btn__container {
border-radius: '5px';
border: '1px solid red';
background-color: 'red';
}
</style>
但是当我调用组件时它不应用样式
<v-button>button</v-button>
【问题讨论】: