refs #5989 routes
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Carlos Satorres 2023-08-02 09:11:15 +02:00
parent b55e216d6a
commit 5241d79f55
2 changed files with 11 additions and 1 deletions

View File

@ -1,6 +1,7 @@
<script setup> <script setup>
import { useStateStore } from 'stores/useStateStore'; import { useStateStore } from 'stores/useStateStore';
import LeftMenu from 'components/LeftMenu.vue'; import LeftMenu from 'components/LeftMenu.vue';
import { Router } from 'src/router';
const stateStore = useStateStore(); const stateStore = useStateStore();
</script> </script>
@ -14,4 +15,7 @@ const stateStore = useStateStore();
<QPageContainer> <QPageContainer>
<RouterView></RouterView> <RouterView></RouterView>
</QPageContainer> </QPageContainer>
<QPageContainer>
<router-view></router-view>
</QPageContainer>
</template> </template>

View File

@ -35,9 +35,15 @@ const routes = [
name: 'NotFound', name: 'NotFound',
component: () => import('../pages/NotFound.vue'), component: () => import('../pages/NotFound.vue'),
}, },
wagon wagon,
], ],
}, },
{
path: '/claim/index',
name: 'Claim',
meta: { title: 'claim' },
component: () => import('../pages/Claim/ClaimMain.vue'),
},
]; ];
export default routes; export default routes;