install.ts 146 B

12345678
  1. import { App } from "vue";
  2. import HIcon from "./icons/index.vue";
  3. export default {
  4. install(app: App) {
  5. app.component("HIcon", HIcon);
  6. }
  7. }