Skip to content
This repository was archived by the owner on Feb 5, 2023. It is now read-only.

Commit 053dd4d

Browse files
committed
chore: opt out test route
1 parent ca29531 commit 053dd4d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/router.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { createRouter, createWebHistory } from 'vue-router';
22

33
import Index from '@/views/Index.vue';
4-
import Test from '@/views/Test.vue';
4+
// import Test from '@/views/Test.vue';
55
import Home from '@/views/Home.vue';
66
import Followings from '@/views/Followings.vue';
77
import Followers from '@/views/Followers.vue';
@@ -21,10 +21,10 @@ const routes = [
2121
path: '/',
2222
component: Index,
2323
},
24-
{
25-
path: '/test',
26-
component: Test,
27-
},
24+
// {
25+
// path: '/test',
26+
// component: Test,
27+
// },
2828
{
2929
path: '/:address',
3030
component: Home,

0 commit comments

Comments
 (0)