准备Web字体--项目记录(四)

1.第一种方法:我们将web字体放到public目录下
这个方法我们能在indx.html文件中通过link标签引用web字体的css文件
准备Web字体--项目记录(四)
index.html引入

<link rel="stylesheet" type="text/css" href="<%= BASE_URL %>fonts/cabin.css"/>
<link rel="stylesheet" type="text/css" href="<%= BASE_URL %>fonts/daysOne.css"/>

在App.vue文件中使用它

<template>
  <div id="app">
    <span class="fonts">ABCDE</span>
    <router-view/>
  </div>
</template>
<script></script>

<style scoped>
  .fonts{
    font-family: 'Days One';
    font-size: 20px;
    color: red;
  }
</style>

2.第二种方法:我们将web字体文件放到assets目录下,在man.js文件中引用
准备Web字体--项目记录(四)
main.js引入

import './assets/fonts/cabin.css'
import './assets/fonts/daysOne.css'

使用方式同上,主要是通过css设置font-family的值

上一篇:为什么angular library的build不能将assets静态资源打包进去(转)


下一篇:springboot-项目获取resources下文件