28 lines
373 B
Vue
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>
|