mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-26 10:13:48 +02:00
20 lines
550 B
Vue
20 lines
550 B
Vue
<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>
|