1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| <template>
| <div id="app">
| <childHealth v-if="config.activeBook.name == 'childHealth'"></childHealth>
| <!-- <English v-if="activeBook == 'English'"></English> -->
| </div>
| </template>
|
| <script>
| import childHealth from './books/childHealth/view/index.vue'
| // import English from './books/English/view/index.vue'
|
| export default {
| name: 'App',
| components: {
| childHealth,
| // English
| }
| }
| </script>
|
| <style lang="less">
| #app {
| max-width: 816px;
| min-width: 375px;
| margin: 0 auto;
| padding-bottom: 100px;
| }
| </style>
|
|