mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2025-07-19 02:58:49 +02:00
added version info and reload option
This commit is contained in:
@ -3,6 +3,8 @@ import LocaleSwitcher from "@/components/LocaleSwitcher.vue";
|
||||
import { ref } from "vue";
|
||||
import DarkModeSwitcher from "@/components/DarkModeSwitcher.vue";
|
||||
import DefaultPageSwitcher from "@/components/DefaultPageSwitcher.vue";
|
||||
import AppVersion from "@/components/AppVersion.vue";
|
||||
import ReloadPwa from "@/components/ReloadPwa.vue";
|
||||
|
||||
const icon = "pi pi-cog";
|
||||
const isDark = ref(true);
|
||||
@ -61,11 +63,26 @@ function handleDarkModeToggled(isDarkVar: boolean) {
|
||||
></DarkModeSwitcher>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid my-2">
|
||||
<div class="col text-left">
|
||||
{{ $t("settings.version") }}
|
||||
</div>
|
||||
<div class="col text-center">
|
||||
<AppVersion />
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid my-2">
|
||||
<div class="col text-center"></div>
|
||||
<div class="col text-center">
|
||||
<ReloadPwa />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<style scoped>
|
||||
|
||||
<style lang="css" scoped>
|
||||
.col {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
Reference in New Issue
Block a user