Commit 51939f89eb42b52c7d39165d507ad58ad27e886c
1 parent
2079c47b
update Select tag
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/components/select/select.vue
... | ... | @@ -6,7 +6,7 @@ |
6 | 6 | @click="toggleMenu"> |
7 | 7 | <slot name="input"> |
8 | 8 | <input type="hidden" :name="name" :value="model"> |
9 | - <div class="ivu-tag" v-for="(item, index) in selectedMultiple"> | |
9 | + <div class="ivu-tag ivu-tag-checked" v-for="(item, index) in selectedMultiple"> | |
10 | 10 | <span class="ivu-tag-text">{{ item.label }}</span> |
11 | 11 | <Icon type="ios-close-empty" @click.native.stop="removeTag(index)"></Icon> |
12 | 12 | </div> | ... | ... |