You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
303 B
22 lines
303 B
|
7 days ago
|
<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>
|