设置倍速

This commit is contained in:
yanghang
2025-07-02 11:04:58 +08:00
parent bf638b894c
commit 58adee173b
9 changed files with 617 additions and 68 deletions
+2
View File
@@ -1,10 +1,12 @@
import App from './App'
import { createSSRApp } from 'vue'
import pinia from './store.js'
import CommonLoading from './components/loading.vue'
export function createApp() {
const app = createSSRApp(App)
app.use(pinia)
app.component('CommonLoading',CommonLoading)
return {
app
}