当前位置:   article > 正文

在vue3中使用Element-plus的图标_el-icon-plus

el-icon-plus

首先安装Element-Plus-icon

  1. # 选择一个你喜欢的包管理器
  2. # NPM
  3. $ npm install @element-plus/icons-vue
  4. # Yarn
  5. $ yarn add @element-plus/icons-vue
  6. # pnpm
  7. $ pnpm install @element-plus/icons-vue

如何使用

Element-Plus-icon官方文档链接Icon 图标 | Element Plus (element-plus.org)icon-default.png?t=N7T8https://element-plus.org/zh-CN/component/icon.html#icon-collection

在main.ts中引入Element-Plus-icon

  1. import * as ElementPlusIconsVue from '@element-plus/icons-vue'
  2. Object.keys(ElementPlusIconsVue).forEach((key) => {
  3. app.component(key, ElementPlusIconsVue[key])
  4. })

第一种直接点击图标复制<el-icon>

                    <el-icon><ArrowRight /></el-icon>

第二种通过icon="el-icon-plus" 

  1. <el-button type="success" icon="el-icon-plus" >
  2. 1111
  3. </el-button>

第三种通过SVG

  1. <template>
  2. <div style="font-size: 20px">
  3. <!-- 由于SVG图标默认不携带任何属性 -->
  4. <!-- 你需要直接提供它们 -->
  5. <Edit style="width: 1em; height: 1em; margin-right: 8px" />
  6. <Share style="width: 1em; height: 1em; margin-right: 8px" />
  7. <Delete style="width: 1em; height: 1em; margin-right: 8px" />
  8. <Search style="width: 1em; height: 1em; margin-right: 8px" />
  9. </div>
  10. </template>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/644762
推荐阅读
相关标签
  

闽ICP备14008679号