generated from PrivateAIM/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style(kong): change data store resource manager to tab view
- Loading branch information
Showing
5 changed files
with
35 additions
and
12 deletions.
There are no files selected for viewing
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
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
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,23 @@ | ||
<script setup lang="ts"> | ||
import DataStoreCreator from "~/components/data-stores/managers/DataStoreCreator.vue"; | ||
import ProjectBinder from "~/components/data-stores/managers/ProjectBinder.vue"; | ||
import AnalysisBinder from "~/components/data-stores/managers/AnalysisBinder.vue"; | ||
</script> | ||
|
||
<template> | ||
<div class="card tabCard"> | ||
<TabView> | ||
<TabPanel header="Create a Data Store"> | ||
<DataStoreCreator /> | ||
</TabPanel> | ||
<TabPanel header="Bind a Project to a Data Store"> | ||
<ProjectBinder /> | ||
</TabPanel> | ||
<TabPanel header="Link an Analysis to a Project"> | ||
<AnalysisBinder /> | ||
</TabPanel> | ||
</TabView> | ||
</div> | ||
</template> | ||
|
||
<style scoped lang="scss"></style> |
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 |
---|---|---|
@@ -1,17 +1,13 @@ | ||
<script setup lang="ts"> | ||
import DataStoreCreator from "~/components/data-stores/managers/DataStoreCreator.vue"; | ||
import ProjectBinder from "~/components/data-stores/managers/ProjectBinder.vue"; | ||
import AnalysisBinder from "~/components/data-stores/managers/AnalysisBinder.vue"; | ||
import ResourceManagerLayout from "~/components/data-stores/ResourceManagerLayout.vue"; | ||
definePageMeta({ | ||
middleware: ["auth"], | ||
}); | ||
</script> | ||
|
||
<template> | ||
<DataStoreCreator /> | ||
<ProjectBinder /> | ||
<AnalysisBinder /> | ||
<ResourceManagerLayout /> | ||
</template> | ||
|
||
<style scoped lang="scss"></style> |
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