Vue修改默认字体
1.在assets文件夹下创建文件夹,命名为font2.在font文件夹中新建文件:font.css@font-face {font-family: "pingFangSC-Medium";src: url("./PingFangMedium_0.ttf");font-weight: normal;font-style: normal;}3.下载字体包4.App.vue文件中使用<style
·
1.在assets文件夹下创建文件夹,命名为font
2.在font文件夹中新建文件:font.css
@font-face {
font-family: "pingFangSC-Medium";
src: url("./PingFangMedium_0.ttf");
font-weight: normal;
font-style: normal;
}
3.下载字体包
4.App.vue文件中使用
<style rel="stylesheet/scss" lang="scss">
@import url("./assets/font/font.css");
body{
font-family:pingFangSC-Medium
}
</style>
更多推荐
已为社区贡献1条内容
所有评论(0)