icon.ts 241 B

12345678910
  1. import type { App } from 'vue'
  2. import * as IconsVue from '@cacp/svg-icons'
  3. export default {
  4. install: (app: App<Element>) => {
  5. for (const [key, component] of Object.entries(IconsVue)) {
  6. app.component(key, component)
  7. }
  8. },
  9. }