vue项目引用图标font-awesome提示错误?

发布于 2022-09-11 19:48:55 字数 541 浏览 18 评论 0

vue项目引用图标font-awesome提示错误

Failed to decode downloaded font: http://localhost:3005/fonts/glyphicons-halflings-regular.woff2
login:1 OTS parsing error: invalid version tag
login:1 Failed to decode downloaded font: http://localhost:3005/fonts/glyphicons-halflings-regular.woff
login:1 OTS parsing error: invalid version tag
login:1 Failed to decode downloaded font: http://localhost:3005/fonts/glyphicons-halflings-regular.ttf
login:1 OTS parsing error: invalid version tag

现在的问题是图标没有办法显示,会显示为一个方块,应该怎么改?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

笙痞 2022-09-18 19:48:55

添加代码

@font-face {
  font-family: 'MyWebFont';
  src: url('webfont.eot'); /* IE9 Compat Modes */
  src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('webfont.woff') format('woff'), /* Pretty Modern Browsers */
       url('webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}
单身狗的梦 2022-09-18 19:48:55

应该是你引用的方式不对 你是通过什么方式引用的呢 你可以选择在线引用
在html 页面 引入 生成的css <link rel="stylesheet" href="//at.alicdn.com/t/font_1180806_k64nbgmu96e.css"> 页面中就可以正常使用的

梦断已成空 2022-09-18 19:48:55

在main.js 中 import 'font-awesome/css/font-awesome.min.css'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文