YM
2024-05-14 01670004fd1fee6137e5068dad6bd306603562a0
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
29
30
31
<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">
  html,body{
    width: 100%;
    height: 100%;
    margin: 0;
  }
  #app {
    width: 100%;
    height: 100%;
  }
</style>