install.ts 227 B

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