logo texts
This commit is contained in:
parent
26e8b41830
commit
b60fe96de2
1 changed files with 7 additions and 1 deletions
|
@ -1,7 +1,11 @@
|
|||
<template>
|
||||
<v-app>
|
||||
<v-main>
|
||||
<TitleBar :title="title_html" />
|
||||
<TitleBar
|
||||
:logo_above="logo_above"
|
||||
:logo_below="logo_below"
|
||||
:title="title_html"
|
||||
/>
|
||||
<Dashboard :message="message_html" />
|
||||
</v-main>
|
||||
<TickerBar
|
||||
|
@ -26,6 +30,8 @@ import TickerBar from "./components/TickerBar.vue";
|
|||
},
|
||||
})
|
||||
export default class App extends Vue {
|
||||
private logo_above = "Technisches Hilfswerk";
|
||||
private logo_below = "OV Musterstadt";
|
||||
private title_html = "<h1>changeme</h1>";
|
||||
private ticker_html = "<p>changeme</p>";
|
||||
private message_html = "<p>changeme</p>";
|
||||
|
|
Loading…
Reference in a new issue