forked from opentiny/tiny-vue
26 lines
692 B
Vue
26 lines
692 B
Vue
<template>
|
|
<tiny-base-select v-model="value" multiple :show-alloption="false">
|
|
<tiny-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"> </tiny-option>
|
|
</tiny-base-select>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { BaseSelect as TinyBaseSelect, Option as TinyOption } from '@opentiny/vue'
|
|
|
|
const options = ref([
|
|
{ value: '选项1', label: '北京' },
|
|
{ value: '选项2', label: '上海' },
|
|
{ value: '选项3', label: '天津' },
|
|
{ value: '选项4', label: '重庆' },
|
|
{ value: '选项5', label: '深圳' }
|
|
])
|
|
const value = ref('')
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.tiny-base-select {
|
|
width: 280px;
|
|
}
|
|
</style>
|