added editor
This commit is contained in:
parent
9e92c80973
commit
4544aff3c7
9
src/pages/Editor.vue
Normal file
9
src/pages/Editor.vue
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
Hi
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style></style>
|
@ -12,6 +12,11 @@ const routes = [
|
|||||||
name: 'Scratch',
|
name: 'Scratch',
|
||||||
component: () => import(/* webpackChunkName: "scratch" */ './pages/Scratch.vue'),
|
component: () => import(/* webpackChunkName: "scratch" */ './pages/Scratch.vue'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/editor',
|
||||||
|
name: 'Editor',
|
||||||
|
component: () => import('./pages/Editor.vue'),
|
||||||
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
const router = createRouter({
|
const router = createRouter({
|
||||||
|
Loading…
Reference in New Issue
Block a user