You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a nuxt app using nuxt layers,
in the base app i have a plugin:
import { addIcons } from 'oh-vue-icons';
import * as bootstrapIconsKeyed from 'oh-vue-icons/icons/bi';
export default defineNuxtPlugin(_nuxtApp => {
const bootstrapIcons = Object.values(bootstrapIconsKeyed);
addIcons(...bootstrapIcons);
});
This imports all the bootstrap icons and they are available in my other apps that extend this layer.
However i had expected to be able to add more icons as and when required, in my child app i added another plugin:
I have a nuxt app using nuxt layers,
in the base app i have a plugin:
This imports all the bootstrap icons and they are available in my other apps that extend this layer.
However i had expected to be able to add more icons as and when required, in my child app i added another plugin:
but these icons are not available when used in my components,
I have also tried importing directly in components :
is this behaviour supported some other way or am i doing something wrong?
apologies if this is not the correct place to raise this.
The text was updated successfully, but these errors were encountered: