automated_uniapp/uni_modules/cool-ui/components/cl-timeline/cl-timeline.vue
2025-01-09 16:16:11 +08:00

22 lines
303 B
Vue

<template>
<view class="cl-timeline">
<slot></slot>
</view>
</template>
<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({
name: "cl-timeline",
props: {
// 左侧时间宽度
timestampWidth: {
type: Number,
default: 150,
},
},
});
</script>