Installation
Vuesax alpha provides a set of common icons.
Copied
npm
yarn
pnpm
npm install @vuesax-alpha/icons-vue
Vuesax alpha provides a set of common icons.
npm install @vuesax-alpha/icons-vue
You can change icon name
// main.ts
import * as VuesaxAlphaIconsVue from '@vuesax-alpha/icons-vue'
const app = createApp(App)
for (const [key, component] of Object.entries(VuesaxAlphaIconsVue)) {
app.component(`VsIcon${key}`, component)
}