added backend which maintains ai instances;
added frontend as control panel
This commit is contained in:
15
frontend/src/components/dashboard/DashBoard.vue
Normal file
15
frontend/src/components/dashboard/DashBoard.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<script lang="ts">
|
||||
import {Options, Vue} from 'vue-class-component';
|
||||
import AiInstanceTabs from "@/components/dashboard/AiInstanceTabs.vue";
|
||||
|
||||
@Options({
|
||||
name: 'DashBoard',
|
||||
components: {AiInstanceTabs},
|
||||
})
|
||||
export default class DashBoard extends Vue {
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<AiInstanceTabs class="m-3"/>
|
||||
</template>
|
||||
Reference in New Issue
Block a user