我使用了自动引入组件,如果不了解可以点进去看一下
vue3 elmentui 报错 Cannot find module ‘node:module‘_Technology_hands的博客-CSDN博客

然后引入icon的时候怎么都不行,最后在网上一直看各种解决方案突然就行了,贴一下代码

import { createApp} from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'


const app = createApp(App)

// 如果您正在使用CDN引入,请删除下面一行。
import * as ElementPlusIconsVue from '@element-plus/icons-vue'

for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
  app.component(key, component)
}

app.use(store)
app.use(router)
app.mount('#app')

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐