mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-11-03 22:57:14 +08:00
新增:新增前端项目模块(基于 Vue3、TypeScript、Arco Design Pro Vue 技术栈),已对接现有 API
This commit is contained in:
87
continew-admin-ui/config/plugin/styleImport.ts
Normal file
87
continew-admin-ui/config/plugin/styleImport.ts
Normal file
@@ -0,0 +1,87 @@
|
||||
/**
|
||||
* Introduces component library styles on demand.
|
||||
* 按需引入组件库样式
|
||||
* https://github.com/anncwb/vite-plugin-style-import
|
||||
*/
|
||||
|
||||
import styleImport from 'vite-plugin-style-import';
|
||||
|
||||
export default function configStyleImportPlugin() {
|
||||
const styleImportPlugin = styleImport({
|
||||
libs: [
|
||||
{
|
||||
libraryName: '@arco-design/web-vue',
|
||||
esModule: true,
|
||||
resolveStyle: (name) => {
|
||||
// The use of this part of the component must depend on the parent, so it can be ignored directly.
|
||||
// 这部分组件的使用必须依赖父级,所以直接忽略即可。
|
||||
const ignoreList = [
|
||||
'config-provider',
|
||||
'anchor-link',
|
||||
'sub-menu',
|
||||
'menu-item',
|
||||
'menu-item-group',
|
||||
'breadcrumb-item',
|
||||
'form-item',
|
||||
'step',
|
||||
'card-grid',
|
||||
'card-meta',
|
||||
'collapse-panel',
|
||||
'collapse-item',
|
||||
'descriptions-item',
|
||||
'list-item',
|
||||
'list-item-meta',
|
||||
'table-column',
|
||||
'table-column-group',
|
||||
'tab-pane',
|
||||
'tab-content',
|
||||
'timeline-item',
|
||||
'tree-node',
|
||||
'skeleton-line',
|
||||
'skeleton-shape',
|
||||
'grid-item',
|
||||
'carousel-item',
|
||||
'doption',
|
||||
'option',
|
||||
'optgroup',
|
||||
'icon',
|
||||
];
|
||||
// List of components that need to map imported styles
|
||||
// 需要映射引入样式的组件列表
|
||||
const replaceList = {
|
||||
'typography-text': 'typography',
|
||||
'typography-title': 'typography',
|
||||
'typography-paragraph': 'typography',
|
||||
'typography-link': 'typography',
|
||||
'dropdown-button': 'dropdown',
|
||||
'input-password': 'input',
|
||||
'input-search': 'input',
|
||||
'input-group': 'input',
|
||||
'radio-group': 'radio',
|
||||
'checkbox-group': 'checkbox',
|
||||
'layout-sider': 'layout',
|
||||
'layout-content': 'layout',
|
||||
'layout-footer': 'layout',
|
||||
'layout-header': 'layout',
|
||||
'month-picker': 'date-picker',
|
||||
'range-picker': 'date-picker',
|
||||
'row': 'grid', // 'grid/row.less'
|
||||
'col': 'grid', // 'grid/col.less'
|
||||
'avatar-group': 'avatar',
|
||||
'image-preview': 'image',
|
||||
'image-preview-group': 'image',
|
||||
'cascader-panel': 'cascader',
|
||||
};
|
||||
if (ignoreList.includes(name)) return '';
|
||||
// eslint-disable-next-line no-prototype-builtins
|
||||
return replaceList.hasOwnProperty(name)
|
||||
? `@arco-design/web-vue/es/${replaceList[name]}/style/css.js`
|
||||
: `@arco-design/web-vue/es/${name}/style/css.js`;
|
||||
// less
|
||||
// return `@arco-design/web-vue/es/${name}/style/index.js`;
|
||||
},
|
||||
},
|
||||
],
|
||||
});
|
||||
return styleImportPlugin;
|
||||
}
|
||||
Reference in New Issue
Block a user