remove 国际化删除, 依赖精简

This commit is contained in:
bootx
2024-07-02 21:27:05 +08:00
parent e1b2d4c094
commit 4835eb66c7
188 changed files with 2086 additions and 1161 deletions

13
types/global.d.ts vendored
View File

@@ -1,4 +1,11 @@
import type { ComponentRenderProxy, VNode, VNodeChild, ComponentPublicInstance, FunctionalComponent, PropType as VuePropType } from 'vue'
import type {
ComponentRenderProxy,
VNode,
VNodeChild,
ComponentPublicInstance,
FunctionalComponent,
PropType as VuePropType,
} from 'vue'
declare global {
const __APP_INFO__: {
@@ -84,5 +91,7 @@ declare global {
}
declare module 'vue' {
export type JSXComponent<Props = any> = { new (): ComponentPublicInstance<Props> } | FunctionalComponent<Props>
export type JSXComponent<Props = any> =
| { new (): ComponentPublicInstance<Props> }
| FunctionalComponent<Props>
}