From f1faa644fe5e2a2df1f2d9a1e9553c262883f03f Mon Sep 17 00:00:00 2001 From: yuantao Date: Tue, 11 Nov 2025 17:09:59 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=A8=E9=81=97=E5=A4=B1=E7=9A=84?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E7=AE=A1=E7=90=86=E5=BC=95=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.ts b/main.ts index 5cc0232..5d9d502 100644 --- a/main.ts +++ b/main.ts @@ -1,6 +1,7 @@ import { createApp } from 'vue' // @ts-ignore import App from './App.vue' +import store from './store' // 创建应用实例 const app = createApp(App) @@ -14,6 +15,7 @@ app.provide('ASSETSURL', ASSETSURL) // @ts-ignore import uView from './uview-plus/index' app.use(uView) +app.use(store) // 挂载应用 app.mount('#app')