elementPlus+vue3引入icon图标

安装包管理,推荐使用 yarn  npm包有时候会有包冲突,在项目的根目录下执行,在终端下


# Yarn
$ yarn add @element-plus/icons-vue

在main.js或main.ts中进行全局注册,导入所有图标


import * as ElementPlusIconsVue from '@element-plus/icons-vue'

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

页面上按需引入需要的icon图标



template模块中 :prefix-icon="User" 引入需要的图标    :surfix-icon="User" 在输入框末尾

你可能感兴趣的:(前端,vue.js,前端,javascript)