Files
nl-um-vue-ts/src/vite-env.d.ts
2025-12-03 12:56:57 +08:00

9 lines
187 B
TypeScript

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