refactor: split settings tab components into smaller components

This commit is contained in:
pa
2025-10-16 10:57:57 +09:00
committed by Natsumi
parent 3a2bd56bbf
commit 6ba7a1c3c4
8 changed files with 1727 additions and 1739 deletions

View File

@@ -0,0 +1,19 @@
<template>
<div>
<WristOverlaySettings @open-feed-filters="showWristFeedFiltersDialog" />
<FeedFiltersDialog v-model:feedFiltersDialogMode="feedFiltersDialogMode" />
</div>
</template>
<script setup>
import { ref } from 'vue';
import FeedFiltersDialog from '../../dialogs/FeedFiltersDialog.vue';
import WristOverlaySettings from '../WristOverlaySettings.vue';
const feedFiltersDialogMode = ref('');
function showWristFeedFiltersDialog() {
feedFiltersDialogMode.value = 'wrist';
}
</script>