Files
PhotonVision/photon-client/src/views/GeneralSettingsView.vue

21 lines
876 B
Vue
Raw Normal View History

<script setup lang="ts">
import MetricsCard from "@/components/settings/MetricsCard.vue";
import DeviceControlCard from "@/components/settings/DeviceControlCard.vue";
2025-01-08 12:44:06 -06:00
import ObjectDetectionCard from "@/components/settings/ObjectDetectionCard.vue";
import NetworkingCard from "@/components/settings/NetworkingCard.vue";
import LightingControlCard from "@/components/settings/LEDControlCard.vue";
import { useSettingsStore } from "@/stores/settings/GeneralSettingsStore";
2023-10-17 10:20:00 -04:00
import ApriltagControlCard from "@/components/settings/ApriltagControlCard.vue";
</script>
<template>
<div class="pa-3">
<MetricsCard />
<DeviceControlCard />
<NetworkingCard />
2025-01-08 12:44:06 -06:00
<ObjectDetectionCard v-if="useSettingsStore().general.supportedBackends.length > 0" />
<LightingControlCard v-if="useSettingsStore().lighting.supported" />
2023-10-17 10:20:00 -04:00
<ApriltagControlCard />
</div>
</template>