1.搜索下載需要的字體:?https://www.dafont.com/theme.php
2.在vue項目下的src/assets文件夾下創(chuàng)建font文件夾土浸,放入需要用的字體并新建font.css?
3.font.css寫入如下代碼
@font-face {
? ? font-family:"MyFont"; //自定義字體名稱
? ? src: url('./micross.ttf'); //引入字體路徑
}
4.在main.js中根據(jù)路徑引入創(chuàng)建的css文件
// 引入字體樣式
import "@/assets/font/font.css"
5.在頁面中使用字體
div{
? ? ? ?font-family:MyFont
}????