From ea9138a6eb9b54c46369a2805be40e65a43a55e3 Mon Sep 17 00:00:00 2001 From: 闫增涛 <1829501689@qq.com> Date: 星期四, 23 五月 2024 11:01:29 +0800 Subject: [PATCH] 英语 --- src/App.vue | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/src/App.vue b/src/App.vue index f24ca81..e0274e7 100644 --- a/src/App.vue +++ b/src/App.vue @@ -3,6 +3,7 @@ <childHealth v-if="activeBook.name == 'childHealth'"></childHealth> <book v-if="activeBook.name == 'content'"></book> <embedded v-if="activeBook.name == 'embedded'"></embedded> + <english v-if="activeBook.name == 'english'"></english> </div> </template> @@ -10,6 +11,7 @@ import childHealth from "./books/childHealth/view/index.vue"; import book from "./books/content/index.vue"; import embedded from "./books/embedded/view/index.vue"; +import english from "./books/English/view/index.vue" export default { name: "App", @@ -17,6 +19,7 @@ childHealth, book, embedded, + english }, data() { return { @@ -24,7 +27,7 @@ }; }, async created() { - this.activeBook = await this.config.getBookConfig(); + this.activeBook = this.thisBookConfig; console.log('鍥句功',this.activeBook); if (this.$store.state.qiankun,this.$store.state.qiankun.getBookConfig) { this.$store.state.qiankun.getBookConfig({ -- Gitblit v1.9.1