generated from Seekra/repository-template
Add base settings page #74
@@ -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>
|
||||
<h1>
|
||||
{{ t('preferences.settings') }}
|
||||
</h1>
|
||||
<BaseLayout class="layout">
|
||||
<template #sidebar>
|
||||
</template>
|
||||
</BaseLayout>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.layout {
|
||||
flex-grow: 1;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user