mirror of
				https://github.com/YunaiV/ruoyi-vue-pro.git
				synced 2025-10-31 02:28:03 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			390 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			390 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| export const styleImportPlugin = {
 | |
|   libs: [
 | |
|     {
 | |
|       libraryName: 'element-plus',
 | |
|       esModule: true,
 | |
|       resolveStyle: (name) => {
 | |
|         return `element-plus/es/components/${name.substring(3)}/style/css`
 | |
|       }
 | |
|     },
 | |
|     {
 | |
|       libraryName: 'vxe-table',
 | |
|       esModule: true,
 | |
|       resolveStyle: (name) => {
 | |
|         return `vxe-table/es/${name}/style.css`
 | |
|       }
 | |
|     }
 | |
|   ]
 | |
| }
 | 
