forked from ccsens_fe/tall-mui-3
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.
28 lines
577 B
28 lines
577 B
<!--
|
|
* @Author: aBin
|
|
* @email: binbin0314@126.com
|
|
* @Date: 2021-07-19 14:15:35
|
|
* @LastEditors: aBin
|
|
* @LastEditTime: 2021-07-19 16:44:12
|
|
-->
|
|
<template>
|
|
<view>
|
|
<Barrier />
|
|
<scroll-view scroll-y="true" style="height: 1000rpx">
|
|
<view style="position: relative">
|
|
<TimeBox />
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
import Barrier from './components/Barrier.vue';
|
|
import TimeBox from './components/TimeBox.vue';
|
|
export default {
|
|
name: 'TimeLine',
|
|
components: { Barrier, TimeBox },
|
|
data() {
|
|
return {};
|
|
},
|
|
};
|
|
</script>
|
|
|