tiny-vue/examples/sites/demos/pc/app/base-select/all-text-composition-api.vue

29 lines
731 B
Vue

<template>
<div>
<tiny-base-select v-model="value" multiple all-text="全部小吃">
<tiny-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"> </tiny-option>
</tiny-base-select>
</div>
</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: '选项6', label: '螺蛳粉' }
])
const value = ref([])
</script>
<style lang="less" scoped>
.tiny-base-select {
width: 280px;
}
</style>