mirror of
https://github.com/rommapp/romm.git
synced 2026-06-29 07:16:28 +00:00
16 lines
505 B
Vue
16 lines
505 B
Vue
<script setup lang="ts">
|
|
import InterfaceOptions from "@/components/Settings/General/Interface/InterfaceOptions.vue";
|
|
import TaskStatus from "@/components/Settings/General/TaskStatus/TaskStatusCard.vue";
|
|
import Theme from "@/components/Settings/General/Theme/ThemeCard.vue";
|
|
import storeAuth from "@/stores/auth";
|
|
|
|
// Props
|
|
const auth = storeAuth();
|
|
</script>
|
|
|
|
<template>
|
|
<theme />
|
|
<interface-options class="mt-1" />
|
|
<task-status v-if="auth.scopes.includes('tasks.run')" class="mt-1" />
|
|
</template>
|