14 lines
351 B
TypeScript
14 lines
351 B
TypeScript
|
/*
|
||
|
* @Author: Kane
|
||
|
* @Date: 2023-03-04 17:23:02
|
||
|
* @LastEditors: Kane
|
||
|
* @FilePath: /task_schedule/shims-vue.d.ts
|
||
|
* @Description:
|
||
|
*
|
||
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||
|
*/
|
||
|
declare module '*.vue' {
|
||
|
import { ComponentOptions } from 'vue';
|
||
|
const componentOptions: ComponentOptions;
|
||
|
export default componentOptions;
|
||
|
}
|