I am creating a Vue2 app and want to use Bootstrap5 icons. Specifically, I want to be able to use the "icon font" type (ie, <i class="bi-alarm"></i>
) instead of embedding an SVG element.
So, I have installed the npm package like so:
npm i bootstrap-icons
but...now what? The Bootstrap5 icon docs did not say anything further. Do I need to install a SASS package? Should I create a Vue plugin? Or, just import the icons as needed for each component?
I am using Vue-CLI.
Thank you for any tips!