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 图标的主要内容,如果未能解决你的问题,请参考以下文章

css 字体图标font-icon

IE 创建 font-icon 奇怪的下划线

IE 创建 font-icon 奇怪的下划线

前端VUE页面快速生成

在uni-app中使用阿里巴巴图标库字体图标

VSCode自定义代码片段1——vue主模板