欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue中使用阿里矢量图步骤及在ie中不显示解决

程序员文章站 2022-05-25 20:57:46
...

在阿里矢量图库中下载就不详细介绍了

  1. 将下载好的压缩包解压
  2. 在assets中新建iconfont文件夹
  3. 将解压后的 iconfont.css,iconfont.ttf,iconfont.eot文件放入其中
  4. 修改iconfont.css中的路径

注意ie中只适合eot格式

@font-face {font-family: "iconfont";
  src: url('./iconfont.eot'); /* IE9*/
  src: url('./iconfont.eot') format('embedded-opentype'), /* IE6-IE8 */
  url('./iconfont.woff') format('woff'),
  url('./iconfont.ttf') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
  url('./iconfont.svg') format('svg'); /* iOS 4.1- */
}