init: AI Grading Assistant MVP

This commit is contained in:
2026-07-15 21:54:21 +08:00
commit 3b1dc16489
34 changed files with 10266 additions and 0 deletions
+20
View File
@@ -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