2020-05-04 04:31:12 +00:00
|
|
|
<template>
|
2021-03-10 15:10:20 +00:00
|
|
|
<div id="app" class="d-flex flex-column vh-100">
|
2021-12-19 15:57:22 +00:00
|
|
|
<NavBar />
|
2021-03-10 15:10:20 +00:00
|
|
|
<Body class="flex-fill overflow-auto" />
|
2021-12-19 19:14:35 +00:00
|
|
|
<NavFooter />
|
2020-09-12 14:29:41 +00:00
|
|
|
</div>
|
2020-05-04 04:31:12 +00:00
|
|
|
</template>
|
2020-05-17 18:22:03 +00:00
|
|
|
|
2020-09-08 09:53:34 +00:00
|
|
|
<script lang="ts">
|
2021-12-19 15:57:22 +00:00
|
|
|
import NavBar from '@/components/layout/NavBar.vue';
|
2021-12-19 19:14:35 +00:00
|
|
|
import NavFooter from '@/components/layout/NavFooter.vue';
|
2020-05-18 18:10:34 +00:00
|
|
|
import Body from '@/components/layout/Body.vue';
|
2021-07-01 18:19:51 +00:00
|
|
|
import { setTimezone } from './shared/formatters';
|
2022-07-07 18:44:19 +00:00
|
|
|
import { defineComponent, onMounted, watch } from 'vue';
|
2022-04-13 19:28:04 +00:00
|
|
|
import { useSettingsStore } from './stores/settings';
|
|
|
|
export default defineComponent({
|
|
|
|
name: 'App',
|
2021-12-19 19:14:35 +00:00
|
|
|
components: { NavBar, Body, NavFooter },
|
2022-04-13 19:28:04 +00:00
|
|
|
setup() {
|
|
|
|
const settingsStore = useSettingsStore();
|
|
|
|
onMounted(() => {
|
|
|
|
setTimezone(settingsStore.timezone);
|
|
|
|
});
|
2022-06-05 12:27:51 +00:00
|
|
|
watch(
|
|
|
|
() => settingsStore.timezone,
|
|
|
|
(tz) => {
|
|
|
|
console.log('timezone changed', tz);
|
|
|
|
setTimezone(tz);
|
|
|
|
},
|
|
|
|
);
|
2022-04-13 19:28:04 +00:00
|
|
|
return {};
|
|
|
|
},
|
|
|
|
});
|
2020-05-06 19:24:12 +00:00
|
|
|
</script>
|
2020-05-06 17:38:52 +00:00
|
|
|
|
2020-09-12 14:29:41 +00:00
|
|
|
<style scoped>
|
|
|
|
#app {
|
|
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2021-06-25 18:00:40 +00:00
|
|
|
|
|
|
|
/* * {
|
|
|
|
outline: 1px solid #f00 !important;
|
|
|
|
} */
|
2020-09-12 14:29:41 +00:00
|
|
|
</style>
|