闫增涛
2024-04-25 c24d621948f034b0a23cb8bf35983b13247a210e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
  <div id="app">
    <tempBook></tempBook>
  </div>
</template>
 
<script>
import tempBook from './view/index.vue'
 
export default {
  name: 'App',
  components: {
    tempBook
  }
}
</script>
 
<style lang="less">
  #app {
    width: 816px;
    margin: 0 auto;
    padding-bottom: 100px;
  }
</style>