tiny-vue_version0/examples/sites/demos/pc/app/select/searchable-composition-api.vue

47 lines
1.4 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<div>场景1单选</div>
<br />
<tiny-select v-model="value" :searchable="true" :show-empty-image="true">
<tiny-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"> </tiny-option>
</tiny-select>
<br />
<br />
<div>场景2多选</div>
<br />
<tiny-select v-model="multivalue" :searchable="true" multiple :show-empty-image="true">
<tiny-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"> </tiny-option>
</tiny-select>
<br />
<br />
<div>场景3多选 + 保留搜索关键字</div>
<br />
<tiny-select v-model="multivalue" :searchable="true" reserve-keyword multiple :show-empty-image="true">
<tiny-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"> </tiny-option>
</tiny-select>
</div>
</template>
<script setup>
import { ref } from 'vue'
import { Select as TinySelect, Option as TinyOption } from '@opentiny/vue'
const options = ref([
{ value: '选项1', label: '北京' },
{ value: '选项2', label: '上海' },
{ value: '选项3', label: '天津' },
{ value: '选项4', label: '重庆' },
{ value: '选项5', label: '深圳' },
{ value: '选项6', label: '南京' },
{ value: '选项7', label: '成都' }
])
const value = ref('')
const multivalue = ref([])
</script>
<style lang="less" scoped>
.tiny-select {
width: 280px;
}
</style>