ray-template/src/vite-env.d.ts
2022-08-07 14:44:30 +08:00

9 lines
230 B
TypeScript

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