refactor(nuxt): split CRM into page routes and workspace shell
This commit is contained in:
7
frontend/app/pages/documents/[documentId].vue
Normal file
7
frontend/app/pages/documents/[documentId].vue
Normal file
@@ -0,0 +1,7 @@
|
||||
<script setup lang="ts">
|
||||
import CrmWorkspaceApp from "~~/app/components/workspace/CrmWorkspaceApp.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<CrmWorkspaceApp />
|
||||
</template>
|
||||
7
frontend/app/pages/documents/index.vue
Normal file
7
frontend/app/pages/documents/index.vue
Normal file
@@ -0,0 +1,7 @@
|
||||
<script setup lang="ts">
|
||||
import CrmWorkspaceApp from "~~/app/components/workspace/CrmWorkspaceApp.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<CrmWorkspaceApp />
|
||||
</template>
|
||||
Reference in New Issue
Block a user