mirror of
				https://github.com/continew-org/continew-admin-ui.git
				synced 2025-11-03 22:57:09 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			307 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			307 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import autoImport from 'unplugin-auto-import/vite'
 | 
						|
 | 
						|
export default function createAutoImport() {
 | 
						|
  return autoImport({
 | 
						|
    // 自动导入 vue 相关函数,如: ref、reactive、toRef等
 | 
						|
    imports: [
 | 
						|
      'vue',
 | 
						|
      'vue-router',
 | 
						|
      'pinia',
 | 
						|
    ],
 | 
						|
    dts: './src/types/auto-imports.d.ts'
 | 
						|
  })
 | 
						|
}
 |