Vue3+VueUse 极简实现可拖拽侧边栏
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
效果如图:
思路
- 在flex容器(container)中横向排布侧边栏(aside)、分隔线(divider)和主要区域(main)
- 通过useMousePressed获取分隔线上的鼠标按压状态,通过useMouseInElement获取容器内的鼠标移动状态,这些状态是响应式的
- 侦听鼠标横向移动距离,仅当鼠标在分隔线按下(即拖拽)时,同步修改侧边栏宽度
代码
shallowRef、watch等已通过unplugin-auto-import自动导入
<template>
<div ref="containerRef" class="container">
<div ref="asideRef" class="aside">Aside</div>
<div ref="dividerRef" class="divider"></div>
<div class="main">Main</div>
</div>
</template>
<script setup lang="ts">
import { useMousePressed, useMouseInElement } from '@vueuse/core'
const asideRef = shallowRef()
const dividerRef = shallowRef()
const containerRef = shallowRef()
const { pressed } = useMousePressed({ target: dividerRef, touch: false })
const { elementX } = useMouseInElement(containerRef)
watch(elementX, (newVal) => {
if (!pressed.value) return
asideRef.value.style.flexBasis = `${Math.floor(newVal)}px`
})
</script>
<style scoped lang="scss">
.container {
height: 200px;
display: flex;
}
.aside {
flex-basis: 120px;
background-color: skyblue;
}
.divider {
flex: 0 0 4px;
height: 100%;
background-color: red;
cursor: col-resize;
&:active {
cursor: default;
}
}
.main {
flex: 1;
background-color: orange;
}
</style>
GitHub 加速计划 / vu / vue
80
16
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:4 个月前 )
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 6 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 6 个月前
更多推荐
已为社区贡献8条内容
所有评论(0)