refactor: 重构videostream; fix: 修复进度条guid无法生成的问题

This commit is contained in:
2025-08-10 20:07:37 +08:00
parent bbde060d11
commit 11ef4dfba6
+9
View File
@@ -0,0 +1,9 @@
import "./assets/main.css";
import { createApp } from "vue";
import { createPinia } from "pinia";
import App from "@/App.vue";
import router from "./router";
const app = createApp(App).use(router).use(createPinia()).mount("#app");