diff --git a/ui/src/App.vue b/ui/src/App.vue
index c9a6e0a..e22c14a 100644
--- a/ui/src/App.vue
+++ b/ui/src/App.vue
@@ -6,6 +6,7 @@
+
@@ -13,15 +14,18 @@
import { Component, Vue } from "vue-property-decorator";
import HelloWorld from "./components/HelloWorld.vue";
import TitleBar from "./components/TitleBar.vue";
+import TickerBar from "./components/TickerBar.vue";
@Component({
components: {
HelloWorld,
TitleBar,
+ TickerBar,
},
})
export default class App extends Vue {
private title_html = "
changeme
";
+ private ticker_html = "changeme
";
}
diff --git a/ui/src/components/TickerBar.vue b/ui/src/components/TickerBar.vue
new file mode 100644
index 0000000..2d0a8e5
--- /dev/null
+++ b/ui/src/components/TickerBar.vue
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file