《ElementPlus 与 ElementUI 差异集合》icon 图标使用(包含:el-button,el-input和el-dropdown 差异对比)
在ElementPlus和ElementUI中,图标可以通过el-icon
组件和i
标签的class
属性来使用。ElementPlus不再包含所有的图标,而是提供了一个基于Svg的图标解决方案,需要从ElementPlus的图标库中选择并引入。
以下是如何在ElementPlus中使用图标的示例代码:
<!-- 使用ElementPlus的图标库 -->
<el-button type="primary" icon="el-icon-search">搜索</el-button>
<!-- 或者使用Svg图标 -->
<el-button type="success" icon="el-icon-plus">添加</el-button>
<!-- 在el-input中使用图标 -->
<el-input placeholder="请输入内容" icon="el-icon-search"></el-input>
在上面的代码中,我们使用了ElementPlus提供的几个内置图标。如果你需要使用自定义的图标,你可以通过以下方式:
<!-- 使用自定义的Svg图标 -->
<el-button type="warning" icon="el-icon-my-custom-icon">自定义</el-button>
在这个例子中,el-icon-my-custom-icon
是你在Svg图标库中定义的一个自定义图标的类名。
请注意,ElementPlus不包含ElementUI的所有图标,你需要根据ElementPlus的官方文档选择和使用合适的图标。如果你的项目中仍然需要ElementUI的所有图标,你可能需要引入ElementUI的图标文件或者迁移到ElementPlus。
评论已关闭