2024-06-19 08:16:28 +02:00
|
|
|
<template>
|
2024-12-03 12:30:10 +01:00
|
|
|
<!-- <SettingsSidebar>
|
2024-06-19 08:16:28 +02:00
|
|
|
<template #behaviour>
|
2024-11-15 15:34:18 +01:00
|
|
|
<SettingPage :page="SettingPages.Behaviour" />
|
2024-06-19 08:16:28 +02:00
|
|
|
</template>
|
|
|
|
|
<template #appearance>
|
2024-11-15 15:34:18 +01:00
|
|
|
<SettingPage :page="SettingPages.Appearance" />
|
2024-06-19 08:16:28 +02:00
|
|
|
</template>
|
|
|
|
|
<template #account>
|
2024-06-21 04:09:09 +02:00
|
|
|
<ProfileEditor />
|
2024-06-19 08:16:28 +02:00
|
|
|
</template>
|
2024-11-15 15:06:06 +01:00
|
|
|
<template #emojis>
|
|
|
|
|
<EmojiEditor />
|
|
|
|
|
</template>
|
2024-12-03 12:30:10 +01:00
|
|
|
</SettingsSidebar> -->
|
2024-06-19 08:16:28 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2024-12-03 12:30:10 +01:00
|
|
|
/* import EmojiEditor from "~/components/settings/emojis/emojis.vue";
|
2024-11-15 15:34:18 +01:00
|
|
|
import SettingPage from "~/components/settings/page.vue";
|
2024-06-21 04:09:09 +02:00
|
|
|
import ProfileEditor from "~/components/settings/profile-editor.vue";
|
|
|
|
|
import SettingsSidebar from "~/components/sidebars/settings-sidebar.vue";
|
2024-11-15 15:34:18 +01:00
|
|
|
import { SettingPages } from "~/settings";
|
2024-06-19 08:16:28 +02:00
|
|
|
|
|
|
|
|
definePageMeta({
|
|
|
|
|
layout: "app",
|
2024-12-03 12:30:10 +01:00
|
|
|
}); */
|
2024-06-19 08:16:28 +02:00
|
|
|
</script>
|