forked from opentiny/tiny-vue
44 lines
1019 B
Vue
44 lines
1019 B
Vue
<template>
|
|
<div>
|
|
<tiny-button @click="openDrawer('width')" type="primary"> 宽度拖拽 </tiny-button>
|
|
<tiny-button @click="openDrawer('height')" type="primary"> 高度拖拽 </tiny-button>
|
|
|
|
<tiny-drawer :placement="placement" title="标题" dragable :visible="visible" @update:visible="visible = $event">
|
|
<div class="content">
|
|
<p v-if="placement === 'right'">横向拖拽左边框可改变抽屉主体宽度。</p>
|
|
<p v-else>竖向拖拽上边框可改变抽屉主体高度。</p>
|
|
</div>
|
|
</tiny-drawer>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Drawer, Button } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyDrawer: Drawer,
|
|
TinyButton: Button
|
|
},
|
|
data() {
|
|
return {
|
|
visible: false,
|
|
placement: 'right'
|
|
}
|
|
},
|
|
methods: {
|
|
openDrawer(target) {
|
|
this.visible = true
|
|
this.placement = target === 'width' ? 'right' : 'bottom'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.content {
|
|
height: 300px;
|
|
padding: 16px 0;
|
|
}
|
|
</style>
|