27 lines
352 B
Vue
27 lines
352 B
Vue
<template>
|
|
<div class="demo-dept-class">
|
|
<tiny-dept v-model="value"></tiny-dept>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { TinyDept } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyDept
|
|
},
|
|
data() {
|
|
return {
|
|
value: '022471'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.demo-dept-class {
|
|
width: 280px;
|
|
}
|
|
</style>
|