de/frontend/src/components/dataease/dragbar/DeBottom2TopDragBar.vue
2021-03-16 17:53:43 +08:00

28 lines
373 B
Vue

<template>
<div v-bottom-to-top-drag class="drag-bar" />
</template>
<script>
export default {
name: 'DeBottom2TopDragBar'
}
</script>
<style scoped>
.drag-bar {
height: 1px;
width: 100%;
z-index: 1000;
cursor: row-resize;
position: fixed;
background-color: #E6E6E6;
border: 0px;
}
.drag-bar:hover {
height: 3px;
}
</style>