You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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`
|
|
}
|
|
}
|
|
]
|
|
}
|