Vue3中使用Element Plus Icon图标

发布时间 2023-11-01 17:35:05作者: 半日闲1

1. 安装

  npm install element-plus --save

2. main.js 引入

    import * as Elicons from "@element-plus/icons-vue";

    for (const name in Elicons) {
        app.component(name, Elicons[name]);
  }

3. 使用

          <template #title>
            <el-icon><location /></el-icon>
            <span>Navigator One</span>
          </template>