vue font-icon 图标
Posted wuss
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue font-icon 图标相关的知识,希望对你有一定的参考价值。
1、vue 游览器左上角小图标
把.ico文件放在根目录下的static文件夹下,然后link标签引入 <link rel="shortcut icon" href="./static/favicon.ico">
2、引入font文件并使用font图标
(1)把font文件放入到文件夹
(2)创建font.css 修改
@font-face {
font-family: "Ionicons";
src: url("./glyphicons-halflings-regular.eot");
src: url("./glyphicons-halflings-regular.eot#iefix") format("embedded-opentype"),
url("./glyphicons-halflings-regular.ttf") format("truetype"),
url("./glyphicons-halflings-regular.woff") format("woff"),
url("./glyphicons-halflings-regular.svg#Ionicons") format("svg");
font-weight: normal;
font-style: normal;
}
(3)main.js 引入font.css
import ‘./common/fonts/font.css‘
注意:同级(./)上级(../)
以上是关于vue font-icon 图标的主要内容,如果未能解决你的问题,请参考以下文章