How should Font Awesome be used with Vue? I have vue-fontawesome added to my project, as well as Bulma, so am I supposed to intermix the two? Or choose one or the other? I would like to be able to use Bulma's classes for coloring the icons.
Vue-fontawesome shows using this syntax:
<font-awesome-icon icon="address-card" />
and Bulma shows using this syntax:
<span class="icon">
<i class="fas fa-home"></i>
</span>
Questions:
- If I am supposed to intermix the two, how should the html syntax look?
- If I can only choose one or the other, what would be the limitations of each?