我有一个要为其设置字体的模板组件。我现在拥有的:
索引.html
<body>
<sidebar-component webpagename="dashboard"></sidebar-component>
</body>
<style>
* {
margin: 0;
font-family: Lab_Grotesque_Light;
}
@font-face {
font-family: 'Lab_Grotesque_Medium';
src: url('./assets/fonts/Lab_Grotesque_Medium.otf');
font-weight: normal;
font-style: normal;
}
</style>
当我在本地启动组件时,这会设置字体。但我想在 Vue 应用程序中使用该组件(从 npm 导入)。那里的自定义字体不起作用。有没有另一种方法来实现这一点。