GSExamProj/components/chenbin-timeline/timeLine.vue

19 lines
204 B
Vue
Raw Normal View History

2024-04-18 11:01:57 +08:00
<template>
<view class="timeline">
<slot></slot>
</view>
</template>
<script>
export default {
components:{
}
}
</script>
<style scoped lang="less">
.timeline {
padding: 20rpx;
}
</style>