Font-AweSome在Vue中的使用

Font-AweSome在Vue项目中的使用

看到网上许多的无法使用了,特地来更新一下,图标代码直接在网站里复制
更具体的使用官网和其他文章很详细,这里就不再讲

Font AweSome中文网.
官网

  • 安装项目依赖

1. npm

 npm i font-awesome -S

2. yarn

yarn add font-awesome -S
  • 在main.js中引入
import 'font-awesome/css/font-awesome.min.css'
  • Vue中使用
 <i class="fa fa-camera-retro"></i>

在这里插入图片描述

                                `效果`

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_46242909/article/details/113310505