全量全局注册
如果应用明确接受更大的初始模块图,可以注册全部导出:
ts
import * as FastElementPlusIconsVue from "@fast-element-plus/icons-vue";
import { createApp } from "vue";
import App from "./App.vue";
const app = createApp(App);
for (const [name, component] of Object.entries(FastElementPlusIconsVue)) {
app.component(name, component);
}
app.mount("#app");普通业务代码应优先使用具名按需导入,让打包器移除未使用图标。
