el-select 有默认选项 也可输入

	<el-select size="mini" v-model="ruleForm.sonWlan" filterable clearable allow-create placeholder="井号" v-on:change="sonWlanChange" class="form_heigth_width">
						<el-option v-for="(item,index) in sonWlanList"
								   :key="'sonWlanList'+index"
								   :label="item.label"
								   :value="item.value"
						>
						</el-option>
					</el-select>

  

sonWlanList是下拉框数组   
sonWlanChange是下拉框事件
posted @ 2022-07-05 10:53  热爱前端的5号机器  阅读(636)  评论(0编辑  收藏  举报