diff --git a/ui/src/App.vue b/ui/src/App.vue index c9b44f2..ae51db2 100644 --- a/ui/src/App.vue +++ b/ui/src/App.vue @@ -6,7 +6,9 @@ :logo_below="logo_below" :title="title_html" /> - + + + import { Component, Vue } from "vue-property-decorator"; +import Calendar from "./components/Calendar.vue"; import Dashboard from "./components/Dashboard.vue"; import TitleBar from "./components/TitleBar.vue"; import TickerBar from "./components/TickerBar.vue"; @Component({ components: { + Calendar, Dashboard, TitleBar, TickerBar, diff --git a/ui/src/components/Calendar.vue b/ui/src/components/Calendar.vue new file mode 100644 index 0000000..c139129 --- /dev/null +++ b/ui/src/components/Calendar.vue @@ -0,0 +1,26 @@ + + + + + \ No newline at end of file