From 616b12823f92acfae2812bb4820d0d9b325a72f5 Mon Sep 17 00:00:00 2001 From: 闫增涛 <1829501689@qq.com> Date: 星期三, 15 五月 2024 17:25:36 +0800 Subject: [PATCH] 题目请求优化 --- src/main.js | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/main.js b/src/main.js index 07be28c..bcd861c 100644 --- a/src/main.js +++ b/src/main.js @@ -30,7 +30,10 @@ let instance = null; function render(props = {}) { - const { container } = props; + const { container, onGlobalStateChange, setGlobalState } = props; + Vue.prototype.onGlobalStateChange = onGlobalStateChange; + Vue.prototype.setGlobalState = setGlobalState; + Vue.prototype.container = container; instance = new Vue({ // router, store, @@ -55,7 +58,9 @@ }); props.setGlobalState({ - state: 3 // 搴旂敤鎸傝浇瀹屾垚锛屽悓鏃剁敤浜庤Е鍙戜竴娆tateChange灏唖tate鎸傝浇鍦╲uex褰撲腑 + state: 3, // 搴旂敤鎸傝浇瀹屾垚锛屽悓鏃剁敤浜庤Е鍙戜竴娆tateChange灏唖tate鎸傝浇鍦╲uex褰撲腑 + bookName: config.activeBook.bookName, + bookId: config.activeBook.bookId }); render(props); @@ -70,4 +75,3 @@ // export async function update(props) { // render(props); // } - -- Gitblit v1.9.1