tiny-vue/examples/sites/demos/pc/app/dept/basic-usage-composition-api...

11 lines
206 B
Vue

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