We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 66b851c + 9dedf4e commit 39d3350Copy full SHA for 39d3350
1 file changed
src/router/index.ts
@@ -1,4 +1,5 @@
1
import { createRouter, createWebHistory } from 'vue-router';
2
+import NotFound from '@/views/notFound/index.vue';
3
import { LogoutResponse } from '@/constants/httpMsg/register/LogoutStatusMsg';
4
import i18n from '@/locale';
5
import { Message } from '@arco-design/web-vue';
@@ -46,7 +47,7 @@ const router = createRouter({
46
47
NO_PERMISSION,
48
{
49
path: '/:pathMatch(.*)',
- component: import('@/views/notFound/index.vue'),
50
+ component: NotFound,
51
},
52
],
53
scrollBehavior() {
0 commit comments