Skip to content

Commit

Permalink
add placeholder for Collectino Objects panel
Browse files Browse the repository at this point in the history
  • Loading branch information
wbbaker committed Aug 1, 2024
1 parent 0da8fe9 commit 48b8f51
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<template>
<VCard>
<ClientOnly>
<VSpinner
v-if="isLoading"
logo-class="w-8 h-8"
legend=""
/>
<VCardHeader>
<h2 class="text-md">Collection Objects</h2>
<PanelDropdown panel-key="panel:collection-objects" />
</VCardHeader>
</ClientOnly>
</VCard>
</template>

<script setup>
const isLoading = ref(false)
</script>

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import PanelCollectionObjects from "./PanelCollectionObjects.vue";

export default {
id: 'panel:collection-objects',
component: PanelCollectionObjects
}

0 comments on commit 48b8f51

Please sign in to comment.