Blame view
src/views/profile/components/Timeline.vue
1.03 KB
d7d9c38c2 auto commit the c... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
<template> <div class="block"> <el-timeline> <el-timeline-item v-for="(item,index) of timeline" :key="index" :timestamp="item.timestamp" placement="top"> <el-card> <h4>{{ item.title }}</h4> <p>{{ item.content }}</p> </el-card> </el-timeline-item> </el-timeline> </div> </template> <script> export default { data() { return { timeline: [ { timestamp: '2019/4/20', title: 'Update Github template', content: 'PanJiaChen committed 2019/4/20 20:46' }, { timestamp: '2019/4/21', title: 'Update Github template', content: 'PanJiaChen committed 2019/4/21 20:46' }, { timestamp: '2019/4/22', title: 'Build Template', content: 'PanJiaChen committed 2019/4/22 20:46' }, { timestamp: '2019/4/23', title: 'Release New Version', content: 'PanJiaChen committed 2019/4/23 20:46' } ] } } } </script> |