From a191ee0f495760168aa776590793e72c9ecbda0d Mon Sep 17 00:00:00 2001 From: 刘嘉威 <daidaibg@163.com> Date: 星期一, 24 十月 2022 15:56:08 +0800 Subject: [PATCH] perf: 增加设置弹窗 可设置是否进行自适应 --- types/env.d.ts | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-) diff --git a/types/env.d.ts b/types/env.d.ts index 4af4bfd..2466134 100644 --- a/types/env.d.ts +++ b/types/env.d.ts @@ -1,8 +1,6 @@ -/// <reference types="vite/client" /> - declare module "*.vue" { - import type { DefineComponent } from "vue"; - // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types - const component: DefineComponent<{}, {}, any>; - export default component; + import { defineComponent } from "vue"; + const Component: ReturnType<typeof defineComponent>; + export default Component; } + -- Gitblit v1.8.0