forked from opentiny/tiny-vue
40 lines
626 B
Vue
40 lines
626 B
Vue
<template>
|
|
<div class="demo-dept">
|
|
<h3 class="title">基本用法</h3>
|
|
<div class="content">
|
|
<tiny-dept v-model="value" @cancel="cancel"></tiny-dept>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { Dept, Modal } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyDept: Dept
|
|
},
|
|
setup() {
|
|
return {
|
|
value: '022471'
|
|
}
|
|
},
|
|
methods: {
|
|
cancel() {
|
|
Modal.message({ message: 'Dept部门 cancel 事件' })
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.demo-dept .tiny-dept {
|
|
width: 270px;
|
|
}
|
|
.title {
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
padding: 16px 0;
|
|
}
|
|
</style>
|