MeterSphere/frontend/config/plugin/arcoResolver.ts

20 lines
804 B
TypeScript
Raw Permalink Normal View History

2023-05-24 11:08:08 +08:00
/**
* If you use the template method for development, you can use the unplugin-vue-components plugin to enable on-demand loading support.
*
* https://github.com/antfu/unplugin-vue-components
* https://arco.design/vue/docs/start
* Although the Pro project is full of imported components, this plugin will be used by default.
* Pro项目中是全量引入组件使
*/
import { ArcoResolver } from 'unplugin-vue-components/resolvers';
import Components from 'unplugin-vue-components/vite';
2023-05-24 11:08:08 +08:00
export default function configArcoResolverPlugin() {
const arcoResolverPlugin = Components({
dirs: [], // Avoid parsing src/components. 避免解析到src/components
deep: false,
resolvers: [ArcoResolver()],
});
return arcoResolverPlugin;
}