EASYAIuniappNewUI/node_modules/tnuiv3p-tn-time-line/time-line.ts
2025-02-08 18:50:38 +08:00

16 lines
319 B
TypeScript

import { buildProps } from '@tuniao/tnui-vue3-uniapp/utils'
import type { ExtractPropTypes } from 'vue'
export const timeLineProps = buildProps({
/**
* @description 显示竖线
*/
showLine: {
type: Boolean,
default: true,
},
})
export type TimeLineProps = ExtractPropTypes<typeof timeLineProps>