add bun backend and add upload bitstream component

This commit is contained in:
2025-03-18 17:28:21 +08:00
parent 4980b84da6
commit d766e2ae6a
13 changed files with 178 additions and 17 deletions

View File

@@ -1,13 +1,13 @@
import { createMemoryHistory, createRouter } from 'vue-router'
import LoginView from "@/views/LoginView.vue"
import UserView from '@/views/UserView.vue'
import TestSVG from '@/views/TestSVG.vue'
import TestView from '@/views/TestView.vue'
const routes = [
{ path: "/", redirect: "/user" },
{ path: "/login", name: "Login", component: LoginView },
{ path: "/user", name: "User", component: UserView },
{ path: "/test", name: "Test", component: TestSVG },
{ path: "/test", name: "Test", component: TestView },
]
const router = createRouter({