aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/timeline')
-rw-r--r--src/components/timeline/timeline.js7
-rw-r--r--src/components/timeline/timeline.vue7
2 files changed, 14 insertions, 0 deletions
diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js
new file mode 100644
index 00000000..727008ad
--- /dev/null
+++ b/src/components/timeline/timeline.js
@@ -0,0 +1,7 @@
+const Timeline = {
+ props: [
+ 'timeline'
+ ]
+}
+
+export default Timeline;
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>