forked from opentiny/tiny-vue
15 lines
321 B
Vue
15 lines
321 B
Vue
<template>
|
|
<tiny-dept :value="value" size="medium">
|
|
<template #hrapprover="data">
|
|
<div>{{ data.slotScope.hrapprover }}</div>
|
|
</template>
|
|
</tiny-dept>
|
|
</template>
|
|
|
|
<script setup lang="jsx">
|
|
import { ref } from 'vue'
|
|
import { Dept as TinyDept } from '@opentiny/vue'
|
|
|
|
const value = ref('022471')
|
|
</script>
|