Skip to content

Commit

Permalink
use canvas scan as default
Browse files Browse the repository at this point in the history
  • Loading branch information
rwv committed Nov 14, 2023
1 parent baca631 commit 839cd4f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,18 @@ const router = createRouter({
{
path: "/scan",
name: "scan",
component: () => import("@/views/ScanView.vue"),
component: () => import("@/views/CanvasScanView.vue"),
},
{
path: "/canvas-scan",
name: "canvas-scan",
path: "/scan-canvas",
name: "scan-canvas",
component: () => import("@/views/CanvasScanView.vue"),
},
{
path: "/scan-magica",
name: "scan-magica",
component: () => import("@/views/ScanView.vue"),
},
// catch all redirect to /
{
path: "/:pathMatch(.*)*",
Expand Down

0 comments on commit 839cd4f

Please sign in to comment.