Browse Source

feat(gui-v2): convert tabview into nested page

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/2819/head
Pranav C 2 years ago
parent
commit
1e5794f235
  1. 3
      packages/nc-gui-v2/pages/nc/[projectId]/index.vue
  2. 11
      packages/nc-gui-v2/pages/nc/[projectId]/index/index.vue
  3. 17
      packages/nc-gui-v2/pages/nc/[projectId]/index/index/index.vue

3
packages/nc-gui-v2/pages/nc/[projectId].vue → packages/nc-gui-v2/pages/nc/[projectId]/index.vue

@ -29,7 +29,8 @@ $state.sidebarOpen.value = true
</template>
<v-container fluid>
<DashboardTabView />
<!-- <DashboardTabView /> -->
<NuxtPage />
</v-container>
</NuxtLayout>
</template>

11
packages/nc-gui-v2/pages/nc/[projectId]/index/index.vue

@ -0,0 +1,11 @@
<script lang="ts" setup>
</script>
<template>
<NuxtPage/>
</template>
<style scoped>
.nc-main-tab {
}
</style>

17
packages/nc-gui-v2/pages/nc/[projectId]/index/index/index.vue

@ -0,0 +1,17 @@
<script>
export default {
name: 'Index',
}
</script>
<template>
<div class="nc-main-tab">
<span>Welcome to NocoDB!</span>
</div>
</template>
<style scoped>
.nc-main-tab {
@apply w-full text-3xl text-gray-400 flex align-center justify-center;
}
</style>
Loading…
Cancel
Save