-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add placeholder for Collectino Objects panel
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
src/modules/otus/components/Panel/PanelCollectionObjects/PanelCollectionObjects.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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> | ||
|
|
6 changes: 6 additions & 0 deletions
6
src/modules/otus/components/Panel/PanelCollectionObjects/main.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | ||
| } |