forked from opentiny/tiny-vue
30 lines
631 B
Vue
30 lines
631 B
Vue
<template>
|
|
<div class="demo-dept">
|
|
<h3 class="title">基本用法</h3>
|
|
<div class="content">
|
|
<tiny-dept v-model="value" :before-confirm="beforeConfirm"></tiny-dept>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="jsx">
|
|
import { Dept as TinyDept, Modal } from '@opentiny/vue'
|
|
import { ref } from 'vue'
|
|
|
|
const value = ref('022471')
|
|
|
|
function beforeConfirm() {
|
|
return new Promise((resolve, reject) => {
|
|
Modal.confirm('确定关闭弹框?').then((res) => {
|
|
res === 'confirm' ? resolve() : reject(new Error())
|
|
})
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.demo-dept .tiny-dept {
|
|
width: 270px;
|
|
}
|
|
</style>
|