diff options
Diffstat (limited to 'src/components/timeline/timeline.vue')
| -rw-r--r-- | src/components/timeline/timeline.vue | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/components/timeline/timeline.vue b/src/components/timeline/timeline.vue new file mode 100644 index 00000000..cf712796 --- /dev/null +++ b/src/components/timeline/timeline.vue @@ -0,0 +1,7 @@ +<template> + <div class="timeline"> + <h1>Timeline goes here</h1> + <h2 v-for="status in timeline.visibleStatuses">{{status.text}}</h2> + </div> +</template> +<script src="./timeline.js"></script> |
