From c309a98cf8a99f60be712a7d4f836db4702c209a Mon Sep 17 00:00:00 2001 From: YM <479443481@qq.com> Date: 星期二, 14 五月 2024 16:53:59 +0800 Subject: [PATCH] Merge branch 'master' of http://182.92.203.7:2001/r/testbookLayout --- src/App.vue | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/App.vue b/src/App.vue index 85e1e12..ce55209 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,23 +1,27 @@ <template> <div id="app"> - <tempBook></tempBook> + <childHealth v-if="config.activeBook.name == 'childHealth'"></childHealth> + <!-- <English v-if="activeBook == 'English'"></English> --> </div> </template> <script> -import tempBook from './view/index.vue' +import childHealth from './books/childHealth/view/index.vue' +// import English from './books/English/view/index.vue' export default { name: 'App', components: { - tempBook + childHealth, + // English } } </script> <style lang="less"> #app { - width: 816px; + max-width: 816px; + min-width: 375px; margin: 0 auto; padding-bottom: 100px; } -- Gitblit v1.9.1