From 9c7c4351215ae3b73b84fd5e16c5c6a7d95bbd4e Mon Sep 17 00:00:00 2001 From: yuantao Date: Tue, 23 Sep 2025 14:09:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=A8=E5=B1=80=E6=96=B9=E6=B3=95=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.js b/main.js index efd6b2e..9a33a19 100644 --- a/main.js +++ b/main.js @@ -1,4 +1,5 @@ import App from './App' +import uviewPlus from '/uview-plus' import globalMixin from './mixins/global' import { createSSRApp } from 'vue' import './uni.promisify.adaptor' @@ -12,6 +13,7 @@ uni.$zp = { export function createApp() { const app = createSSRApp(App) + app.use(uviewPlus) app.use(globalMixin) return { app } }