This commit is contained in:
2026-01-05 12:47:14 +08:00
commit 1fc846fae3
1614 changed files with 162035 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import type { ExtractPropTypes } from 'vue'
import { commonProps } from '../_utils'
export const swipegroupProps = {
...commonProps,
/**
* @description 控制内部 Swipe 互斥,即滑动打开某一个 Swipe 时,触发其余 Swipe 的 close 方法
*/
lock: Boolean,
}
export type SwipeGroupProps = ExtractPropTypes<typeof swipegroupProps>