VSwipeMap
VSwipeMap
组件用于在两个地图的滑动与同步。
基础用法
结合 VSyncMap
组件控制两个地图的滑动。
API
swipeMapProps
属性名 | 说明 | 类型 | 默认值 |
---|---|---|---|
direction | 拖拽方向 | enum | horizontal |
disabled | 是否禁用滑块拖动 | boolean | false |
modelValue | 滑块初始位置比例 | number | 0.5 |
swipeMapEmits
事件名 | 参数类型 | 说明 |
---|---|---|
update:modelValue | Function | 当滑块位置改变时触发 |
swipeMapSlots
名称 | 说明 |
---|---|
before | (左、上) 地图 |
after | (右、下)地图 |
类型定义
SwipeMapDirection
typescript
export type SwipeMapDirection = 'horizontal' | 'vertical'
SwipeMapEmits
typescript
export type SwipeMapEmits = {
'update:modelValue': [e: number]
}