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

19 lines
270 B
Vue

<template>
<tiny-dept v-model="value" :auto-select="false"></tiny-dept>
</template>
<script lang="jsx">
import { Dept } from '@opentiny/vue'
export default {
components: {
TinyDept: Dept
},
data() {
return {
value: '022471'
}
}
}
</script>