mirror of
				https://github.com/continew-org/continew-admin-ui.git
				synced 2025-10-31 20:58:40 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			329 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			329 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import autoImport from 'unplugin-auto-import/vite'
 | |
| 
 | |
| export default function createAutoImport() {
 | |
|   return autoImport({
 | |
|     // 自动导入 vue 相关函数
 | |
|     imports: ['vue', 'vue-router', {
 | |
|       // vue 3.5.x
 | |
|       vue: ['useTemplateRef', 'onWatcherCleanup', 'useId'],
 | |
|     }],
 | |
|     dts: './src/types/auto-imports.d.ts',
 | |
|   })
 | |
| }
 |