闫增涛
2024-05-14 cb54fc44f2277c491eea25c7831457ca118ecd3c
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;
  }