18 lines
		
	
	
		
			401 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			401 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 { type ComponentOptions } from "vue";
 | 
						|
    const componentOptions: ComponentOptions;
 | 
						|
    // export default componentOptions;
 | 
						|
}
 | 
						|
 | 
						|
// declare module "./src/router/index.js";
 |