diff --git a/src/pages/Editor.vue b/src/pages/Editor.vue new file mode 100644 index 0000000..79f62ac --- /dev/null +++ b/src/pages/Editor.vue @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/router.ts b/src/router.ts index 33618ad..e0a2ff8 100644 --- a/src/router.ts +++ b/src/router.ts @@ -12,6 +12,11 @@ const routes = [ name: 'Scratch', component: () => import(/* webpackChunkName: "scratch" */ './pages/Scratch.vue'), }, + { + path: '/editor', + name: 'Editor', + component: () => import('./pages/Editor.vue'), + }, ] const router = createRouter({