29 lines
704 B
Vue
29 lines
704 B
Vue
<template>
|
|
<tiny-select v-model="value" multiple show-overflow-tooltip style="width: 200px">
|
|
<tiny-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"> </tiny-option>
|
|
</tiny-select>
|
|
</template>
|
|
|
|
<script>
|
|
import { Select, Option } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinySelect: Select,
|
|
TinyOption: Option
|
|
},
|
|
data() {
|
|
return {
|
|
options: [
|
|
{ value: '选项1', label: '北京' },
|
|
{ value: '选项2', label: '上海' },
|
|
{ value: '选项3', label: '天津' },
|
|
{ value: '选项4', label: '重庆' },
|
|
{ value: '选项5', label: '深圳' }
|
|
],
|
|
value: ''
|
|
}
|
|
}
|
|
}
|
|
</script>
|