app.component(key, component) } 1. 2. 3. 4. 5. 6. 其次,图标的命名似乎发生了变化,之前是 <el-input prefix-icon="el-icon-search" style="width:100%"></el-input> 1. 现在只需像下面一样即可,不需要加上 el-icon 前缀。 <el-input prefix-icon="search" style="width:100%"></el-input...
在最新版的 ElementUI 中,使用 el-input 标签并添加 prefix-icon 属性,但是图标并未显示,试了好多方法,终于找到了解决办法。
import * as ElementPlusIconsVue from '@element-plus/icons-vue' const app = createApp(App) // 统一注册el-icon图标 // for(let iconName in ElIconModules){ // app.component(iconName,ElIconModules[iconName]) // } for (const [key, component] of Object.entries(ElementPlusIconsVue)) { ap...
在el-input中可以通过 prefix-icon(首部)和 suffix-icon(尾部) 属性在 input 组件增加显示图标,也可以通过 slot 来放置图标。如下图: 1、vue2中使用 在input中使用属性添加 <el-input placeholder="请选择日期" suffix-icon="el-icon-date" v-model="input1"> </el-input> <el-input placeholder="请输...