screenFront/src/shims-vue.d.ts

32 lines
836 B
TypeScript
Raw Normal View History

2023-05-12 08:41:33 +00:00
/*
* @FilePath: \wang-vue-worke:\demo\daping\src\shims-vue.d.ts
* @Author:
* @文件版本: V1.0.0
* @Date: 2023-01-29 15:16:36
* @Description:
*
* 版权信息 : 2023 by ${}, All Rights Reserved.
*/
/* eslint-disable */
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
declare module '@dataview/datav-vue3'
declare module '@jiaminghi/data-view'
declare module '*.json'{
const jsondata: any;
export default jsondata;
}
declare module './utils/echarts.js' {
const echarts: any
export default echarts
}
// declare module "*.vue" {
// import { defineComponent } from "vue";
// const Component: ReturnType<typeof defineComponent>;
// export default Component;
// }
declare module "vue-i18n"