Home > front end >  Why only some of Bootstrap Vue icons work in a vue app using the latest Bootstrap Vue?
Why only some of Bootstrap Vue icons work in a vue app using the latest Bootstrap Vue?

Time:08-25

I have installed Bootstrap Vue using the instructions here: enter image description here

Also, looking in the file here /node_modules/bootstrap-vue/src/icons/icons.js I do not see anything for the send icon.

Is Bootstrap Vue configured properly? Is the bootstrap-vue icons.js file somehow overwriting the bootstrap-icons module, since that js file does not have many of the newer icons found here?

Not sure what I am missing here, I followed exactly like they instructed.

CodePudding user response:

From the Bootstrap Vue link you posted:

Bootstrap Icons v1.5.0 were added in BootstrapVue v2.22.0.

"send" icon was added in 1.7.0.

CodePudding user response:

The bootstrap-vue docs has an icon explorer section you can search for available icons. Searching for "send" shows No matching icons found. Try searching again. It appears you're trying to use an icon that isn't available.

  • Related