ticker color variable

This commit is contained in:
Jörn-Michael Miehe 2022-09-15 22:14:45 +00:00
parent a55bcfb9e0
commit 1a9f284447

View file

@ -34,7 +34,7 @@
<TickerBar
v-if="ticker_html !== ''"
:content="ticker_html"
color="primary"
:color="ticker_color"
/>
</v-layout>
</v-app>
@ -81,6 +81,7 @@ export default class App extends Vue {
private dashboard_ip = "0.0.0.0";
private ticker_html = "<p>changeme</p>";
private ticker_color = "primary";
}
</script>