包含前后端完整代码: - 前端:Vue3+Vite+ElementPlus - 后端:FastAPI+SQLAlchemy - 模块:驾驶舱/KPI/战略地图/预警/预算/成本/预测/改善行动 - 当前版本:v1.0.0
11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
/// <reference types="vite/client" />
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue'
|
|
const component: DefineComponent<{}, {}, any>
|
|
export default component
|
|
}
|
|
declare module 'markdown-it' {
|
|
const content: any
|
|
export default content
|
|
}
|