el-select 前置文字
时间: 2024-01-16 12:18:29 浏览: 272
el-select-tree:ElementUI的el-select与el-tree结合
5星 · 资源好评率100%
在element-ui中,el-select控件没有直接支持在前面添加icon图标的属性。但是你可以使用slot来实现在el-select前面添加icon图标的效果。
如果你使用的是element-plus,可以使用<template #prefix>来替换。示例代码如下:
```html
<el-select clearable style="width: 560px" v-model="userModel.industryClassifyGid" placeholder="所属行业">
<template #prefix>
<span style="padding-left: 5px;">
<i class="el-icon-suitcase"></i>
</span>
</template>
<el-option label="区域一" value="shanghai"></el-option>
<el-option label="区域二" value="beijing"></el-option>
</el-select>
```
如果你使用的是element-ui,可以使用slot来替换。示例代码如下:
```html
<el-select clearable style="width: 560px" v-model="userModel.industryClassifyGid" placeholder="所属行业">
<template slot="prefix">
<span style="padding-left: 5px;">
<i class="el-icon-suitcase"></i>
</span>
</template>
<el-option label="区域一" value="shanghai"></el-option>
<el-option label="区域二" value="beijing"></el-option>
</el-select>
```
以上代码中,通过在el-select控件内部使用<template #prefix>或者<template slot="prefix">来定义前置内容,然后在其中添加需要的图标即可实现el-select前置文字的效果。
阅读全文