Add base settings page #74

Merged
jakob.scheid merged 43 commits from feature/base-settings-page into main 2026-05-23 13:16:37 +02:00
2 changed files with 15 additions and 11 deletions
Showing only changes of commit b48a487d2f - Show all commits
+15 -11
View File
@@ -1,5 +1,5 @@
<script setup>
import LeftSidebarLayout from '@/layouts/LeftSidebarLayout.vue';
import BaseLayout from '@/layouts/BaseLayout.vue';
import { useI18n } from 'vue-i18n';
@@ -7,13 +7,17 @@ const { t } = useI18n();
</script>
<template>
<div>
<h1>
{{ t('preferences.settings') }}
</h1>
<LeftSidebarLayout>
<template #sidebar>
</template>
</LeftSidebarLayout>
</div>
</template>
<h1>
{{ t('preferences.settings') }}
</h1>
<BaseLayout class="layout">
<template #sidebar>
</template>
</BaseLayout>
</template>
<style scoped>
.layout {
flex-grow: 1;
}
</style>