mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-26 18:23:47 +02:00
refactor: split settings tab components into smaller components
This commit is contained in:
19
src/views/Settings/components/Tabs/WristOverlayTab.vue
Normal file
19
src/views/Settings/components/Tabs/WristOverlayTab.vue
Normal 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>
|
||||
Reference in New Issue
Block a user