UNPKG

nutui-uniapp

Version:

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

13 lines (9 loc) 285 B
import type { ExtractPropTypes } from 'vue' import { commonProps } from '../_utils' export const swiperItemProps = { ...commonProps, } export type SwiperItemProps = ExtractPropTypes<typeof swiperItemProps> export interface SwiperItemInst { setOffset: (offset: number) => void }