ovdashboard/ui/src/components/TitleBar.vue

25 lines
403 B
Vue
Raw Normal View History

2022-09-09 22:41:50 +00:00
<template>
2022-09-10 02:11:36 +00:00
<v-toolbar color="primary" prominent dark>
2022-09-09 22:41:50 +00:00
<v-spacer />
<v-col>
2022-09-10 02:19:45 +00:00
<Clock format="DDD" />
<Clock format="T" />
2022-09-09 22:41:50 +00:00
</v-col>
2022-09-10 02:11:36 +00:00
</v-toolbar>
2022-09-09 22:41:50 +00:00
</template>
<script>
2022-09-09 23:14:03 +00:00
import { Component, Vue } from "vue-property-decorator";
2022-09-10 02:19:45 +00:00
import Clock from "./Clock.vue";
2022-09-09 22:41:50 +00:00
2022-09-09 23:14:03 +00:00
@Component({
2022-09-09 22:41:50 +00:00
components: {
2022-09-10 02:19:45 +00:00
Clock,
2022-09-09 22:41:50 +00:00
},
2022-09-09 23:14:03 +00:00
})
export default class TitleBar extends Vue {}
2022-09-09 22:41:50 +00:00
</script>
<style>
</style>