Files
lingji-work-fe/env.d.ts
2025-07-25 15:11:57 +08:00

7 lines
194 B
TypeScript

/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const vueComponent: DefineComponent<{}, {}, any>;
export default vueComponent;
}