From 7f67007a124928ecad1567bf4670bb44f7718a04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= <40151420+ldericher@users.noreply.github.com> Date: Mon, 12 Sep 2022 13:01:58 +0000 Subject: [PATCH] TickerBar component --- ui/src/App.vue | 4 +++ ui/src/components/TickerBar.vue | 60 +++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 ui/src/components/TickerBar.vue 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