update Select style with filterable & prefix
This commit is contained in:
parent
90399f8494
commit
9013c49d7c
3 changed files with 26 additions and 4 deletions
|
@ -1,10 +1,14 @@
|
|||
<template>
|
||||
<div style="margin: 100px;">
|
||||
<Select v-model="model1" style="width:200px" prefix="ios-albums">
|
||||
<Select v-model="model1" filterable style="width:200px" prefix="ios-albums">
|
||||
<Option v-for="item in cityList" :value="item.value" :key="item.value">{{ item.label }}</Option>
|
||||
</Select>
|
||||
|
||||
<Select v-model="model10" :max-tag-count="2" multiple style="width:400px" prefix="ios-albums">
|
||||
<Select v-model="model10" filterable :max-tag-count="2" multiple style="width:400px">
|
||||
<Option v-for="item in cityList" :value="item.value" :key="item.value">{{ item.label }}</Option>
|
||||
</Select>
|
||||
|
||||
<Select v-model="model10" filterable :max-tag-count="2" multiple style="width:400px" prefix="ios-albums">
|
||||
<Option v-for="item in cityList" :value="item.value" :key="item.value">{{ item.label }}</Option>
|
||||
</Select>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue