From 1f7c398c505a06463276c4b5fb0d2c2b396031a9 Mon Sep 17 00:00:00 2001 From: wangfan <2547096351@qq.com> Date: Sun, 19 Jan 2025 15:22:14 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=97=A0=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components.d.ts | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/src/components.d.ts b/src/components.d.ts index e8eda05..0f9377d 100644 --- a/src/components.d.ts +++ b/src/components.d.ts @@ -5,23 +5,22 @@ // Read more: https://github.com/vuejs/core/pull/3399 export {} -declare module 'vue' { +declare module "vue" { export interface GlobalComponents { - BarcodeDraw: typeof import('./components/barcode-draw/index.vue')['default'] - CodeView: typeof import('./components/code-view/index.vue')['default'] - copy: typeof import('./components/pinyin-pro/index copy.vue')['default'] - ExternalLinkPage: typeof import('./components/external-link-page/index.vue')['default'] - FillPage: typeof import('./components/fill-page/index.vue')['default'] - InternalLinkPage: typeof import('./components/internal-link-page/index.vue')['default'] - LangProvider: typeof import('./components/lang-provider/index.vue')['default'] - MainTransition: typeof import('./components/main-transition/index.vue')['default'] - PinyinPro: typeof import('./components/pinyin-pro/index.vue')['default'] - QrcodeDraw: typeof import('./components/qrcode-draw/index.vue')['default'] - RouterLink: typeof import('vue-router')['RouterLink'] - RouterView: typeof import('vue-router')['RouterView'] - SelectIcon: typeof import('./components/select-icon/index.vue')['default'] - SvgAndIcon: typeof import('./components/svg-and-icon/index.vue')['default'] - SvgIcon: typeof import('./components/svg-icon/index.vue')['default'] - VerifyCode: typeof import('./components/verify-code/index.vue')['default'] + BarcodeDraw: (typeof import("./components/barcode-draw/index.vue"))["default"]; + CodeView: (typeof import("./components/code-view/index.vue"))["default"]; + ExternalLinkPage: (typeof import("./components/external-link-page/index.vue"))["default"]; + FillPage: (typeof import("./components/fill-page/index.vue"))["default"]; + InternalLinkPage: (typeof import("./components/internal-link-page/index.vue"))["default"]; + LangProvider: (typeof import("./components/lang-provider/index.vue"))["default"]; + MainTransition: (typeof import("./components/main-transition/index.vue"))["default"]; + PinyinPro: (typeof import("./components/pinyin-pro/index.vue"))["default"]; + QrcodeDraw: (typeof import("./components/qrcode-draw/index.vue"))["default"]; + RouterLink: (typeof import("vue-router"))["RouterLink"]; + RouterView: (typeof import("vue-router"))["RouterView"]; + SelectIcon: (typeof import("./components/select-icon/index.vue"))["default"]; + SvgAndIcon: (typeof import("./components/svg-and-icon/index.vue"))["default"]; + SvgIcon: (typeof import("./components/svg-icon/index.vue"))["default"]; + VerifyCode: (typeof import("./components/verify-code/index.vue"))["default"]; } }