mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-06-15 05:19:17 +08:00
9 lines
230 B
TypeScript
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
|
|
}
|