simple-vue-timeline
Version:
A timeline vue component
18 lines (15 loc) • 468 B
text/typescript
import { Component, Prop, Vue } from 'vue-property-decorator';
import { Item } from './simple-timeline-item.model';
import SimpleTimelineItem from './SimpleTimelineItem.vue';
({
components: {
timeline: SimpleTimeline,
timelineItem: SimpleTimelineItem
}
})
export default class SimpleTimeline extends Vue {
({ default: () => [] })
public items!: Item[];
({ default: 'DD/MM/YY' })
public dateFormat!: string;
}