2022-09-09 22:41:50 +00:00
|
|
|
<template>
|
|
|
|
|
<v-app-bar app color="primary" dark>
|
|
|
|
|
<v-spacer />
|
|
|
|
|
|
|
|
|
|
<v-col>
|
|
|
|
|
<ClockDisplay format="LL" />
|
|
|
|
|
<ClockDisplay format="H:mm" />
|
|
|
|
|
</v-col>
|
|
|
|
|
</v-app-bar>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-09-09 23:14:03 +00:00
|
|
|
import { Component, Vue } from "vue-property-decorator";
|
2022-09-09 22:41:50 +00:00
|
|
|
import ClockDisplay from "./ClockDisplay.vue";
|
|
|
|
|
|
2022-09-09 23:14:03 +00:00
|
|
|
@Component({
|
2022-09-09 22:41:50 +00:00
|
|
|
components: {
|
|
|
|
|
ClockDisplay,
|
|
|
|
|
},
|
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>
|