1//install fontawesome icons
2npm install --save-dev @fortawesome/fontawesome-free
3
4//inside main.js add
5import '@fortawesome/fontawesome-free/css/all.css' <------
6import '@fortawesome/fontawesome-free/js/all.js' <------
7.
8.
9.
10new Vue({ router, store, render: h => h(App),}).$mount('#app')
11
12
13// you can now use the icons anywhere in your project with the <i>
14 <i class="fab fa-2x fa-facebook"></i>
15 <i class="fab fa-2x fa-twitter"></i>
16 <i class="fab fa-2x fa-instagram"></i>