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

This commit is contained in:
SikongJueluo 2025-08-10 20:05:59 +08:00
parent bbde060d11
commit 11ef4dfba6
No known key found for this signature in database
1 changed files with 9 additions and 0 deletions

9
src/main.ts Normal file
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");