tiny-vue/examples/sites/demos/pc/app/dept/auto-select-composition-api...

11 lines
227 B
Vue

<template>
<tiny-dept v-model="value" :auto-select="false"></tiny-dept>
</template>
<script setup lang="jsx">
import { ref } from 'vue'
import { Dept as TinyDept } from '@opentiny/vue'
const value = ref('022471')
</script>