Skip to content

Commit

Permalink
Redirect from exitIframe to home
Browse files Browse the repository at this point in the history
  • Loading branch information
Mini-Sylar committed Jan 23, 2024
1 parent 83c5b23 commit 947395c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion web/frontend/src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ const router = createRouter({
{
path: '/exitiframe',
name: 'exitiframe',
component: () => import('../views/ExitIframeView.vue')
component: () => import('../views/ExitIframeView.vue'),
redirect: { name: 'home' }
}
]
})
Expand Down
2 changes: 1 addition & 1 deletion web/frontend/src/views/ExitIframeView.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div>ExitIframeView</div>
<div></div>
</template>

<script setup></script>
Expand Down

0 comments on commit 947395c

Please sign in to comment.