UNPKG

nutui-uniapp

Version:

京东风格的轻量级移动端 Uniapp、Vue3 组件库(支持小程序开发)

39 lines (34 loc) 1.03 kB
import type { ExtractPropTypes } from 'vue' import { CLICK_EVENT } from '../_constants' import { commonProps, isString, makeArrayProp } from '../_utils' import type { SwipePosition, SwipeToggleEvent } from './types' export const swipeProps = { ...commonProps, /** * @description 唯一标识 */ name: String, /** * @description 是否阻止滑动事件冒泡 */ touchMoveStopPropagation: Boolean, /** * @description 是否阻止滑动事件行为 */ touchMovePreventDefault: Boolean, /** * @description 是否禁用滑动 */ disabled: Boolean, /** * @description 点击自动关闭的部分 */ closeOnClick: makeArrayProp<SwipePosition>(['left', 'content', 'right']), } export type SwipeProps = ExtractPropTypes<typeof swipeProps> export const swipeEmits = { open: (event: SwipeToggleEvent) => event instanceof Object, close: (event: SwipeToggleEvent) => event instanceof Object, [CLICK_EVENT]: (val: string) => isString(val), } export type SwipeEmits = typeof swipeEmits