YM
2024-05-13 1db8ceb3c8b794df374104834221bdbb84260e23
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
<template>
  <div id="app">
    <tempBook></tempBook>
  </div>
</template>
 
<script>
import tempBook from './books/childHealth/view/index.vue'
 
export default {
  name: 'App',
  components: {
    tempBook
  }
}
</script>
 
<style lang="less">
  #app {
    max-width: 816px;
    min-width: 375px;
    margin: 0 auto;
    padding-bottom: 100px;
  }
</style>