Conditionally render settings tabs based on available Things

This commit is contained in:
Julian Stirling 2025-11-07 14:46:55 +00:00
parent f35c96d653
commit f9020fc6a0
4 changed files with 94 additions and 63 deletions

View file

@ -0,0 +1,21 @@
<template>
<div>
<appSettings />
<streamSettings />
</div>
</template>
<script>
import appSettings from "./displaySetttingsComponents/appSettings.vue";
import streamSettings from "./displaySetttingsComponents/streamSettings.vue";
// Export main app
export default {
name: "SettingsContent",
components: {
streamSettings,
appSettings,
},
};
</script>