WIP: panel management uix

This commit is contained in:
Jesse Malotaux 2025-04-05 23:23:51 +02:00
parent 0d3fb09310
commit 58de6eb976
5 changed files with 276 additions and 3 deletions

View file

@ -1,7 +1,21 @@
<template>
<div></div>
<div id="macros" class="panel">
<h1 class="panel__title">
Panels <span class="text-sm">{{ isLocal() ? 'remote' : 'servers' }}</span>
</h1>
<div class="panel__content !p-0">
<div class="macro-panel__content">
<PanelsOverview />
</div>
</div>
</div>
</template>
<script setup></script>
<script setup>
import PanelsOverview from '@/components/panels/PanelsOverview.vue'
import { isLocal } from '@/services/ApiService'
</script>
<style lang="scss" scoped></style>
<style scoped>
@reference "@/assets/main.css";
</style>