Include external CSS library in only one Vue component Include external CSS library in only one Vue component vue.js vue.js

Include external CSS library in only one Vue component


Import css file in style tag of App.js

<style>@import './static/css/style.css';</style>


If you have just one page or component, isn't it easier to create what you need in a <template /> and <html /> tag?


Instead of trying to include Font-Awesome directly in the component, I discovered there is already a Vue wrapper for it called vue-awesome so I used that.