40 lines
757 B
Vue
40 lines
757 B
Vue
<template>
|
|
<div class="demo-split">
|
|
<tiny-split v-model="split1" @movestart="movestart">
|
|
<template #left>
|
|
<div class="demo-split-pane">左面板</div>
|
|
</template>
|
|
<template #right>
|
|
<div class="demo-split-pane">右面板</div>
|
|
</template>
|
|
</tiny-split>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="jsx">
|
|
import { ref } from 'vue'
|
|
import { Split as TinySplit, Modal } from '@opentiny/vue'
|
|
|
|
const split1 = ref(0.3)
|
|
|
|
function movestart() {
|
|
Modal.message('拖拽开始')
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.demo-split {
|
|
height: 200px;
|
|
border: 1px solid #d9d9d9;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.demo-split-pane {
|
|
width: 100%;
|
|
justify-content: center;
|
|
align-items: center;
|
|
display: flex;
|
|
height: 100%;
|
|
}
|
|
</style>
|