mirror of
https://gitee.com/xiongmao1988/rax-medical.git
synced 2025-08-23 20:44:58 +08:00
10 lines
361 B
TypeScript
10 lines
361 B
TypeScript
/// <reference types="vite/client" />
|
|
//解决ts文件引入vue文件出现红色警告问题
|
|
declare module '*.vue' {
|
|
import { defineComponent } from 'vue'
|
|
const Component: ReturnType<typeof defineComponent>
|
|
export default Component
|
|
}
|
|
/// <reference types="vite/client" />
|
|
declare module 'element-plus/dist/locale/zh-cn.mjs'
|
|
declare module 'mockjs' |