init: AI Grading Assistant MVP
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import { createRouter, createWebHashHistory } from 'vue-router'
|
||||
import FloatingToolbar from '@/components/FloatingToolbar.vue'
|
||||
|
||||
const router = createRouter({
|
||||
history: createWebHashHistory(),
|
||||
routes: [
|
||||
{
|
||||
path: '/',
|
||||
name: 'toolbar',
|
||||
component: FloatingToolbar
|
||||
},
|
||||
{
|
||||
path: '/screenshot',
|
||||
name: 'screenshot',
|
||||
component: () => import('@/components/ScreenshotOverlay.vue')
|
||||
}
|
||||
]
|
||||
})
|
||||
|
||||
export default router
|
||||
Reference in New Issue
Block a user