mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-18 02:56:30 +08:00
commit:升级到vue3,更新最近工作流技术栈,支持sa-token
This commit is contained in:
29
OrangeFormsOpen-VUE3/src/vite-env.d.ts
vendored
Normal file
29
OrangeFormsOpen-VUE3/src/vite-env.d.ts
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
/// <reference types="vite/client" />
|
||||
declare module '*.vue' {
|
||||
import { DefineComponent } from 'vue';
|
||||
const component: DefineComponent<{}, {}, any>;
|
||||
export default component;
|
||||
}
|
||||
|
||||
declare module '*.svg';
|
||||
declare module '*.png';
|
||||
declare module '*.jpg';
|
||||
declare module '*.jpeg';
|
||||
declare module '*.gif';
|
||||
declare module '*.bmp';
|
||||
declare module '*.tiff';
|
||||
declare module '*.mjs';
|
||||
declare module 'vue-json-viewer';
|
||||
declare module 'ejs';
|
||||
declare module 'bpmn-js/lib/Modeler';
|
||||
declare module 'xml-js';
|
||||
declare module 'bpmn-js-token-simulation';
|
||||
|
||||
interface ImportMetaEnv {
|
||||
VITE_SERVER_HOST: string;
|
||||
VITE_PROJECT_NAME: string;
|
||||
}
|
||||
|
||||
interface ImportMeta {
|
||||
env: ImportMetaEnv;
|
||||
}
|
||||
Reference in New Issue
Block a user