闫增涛
2024-05-15 63cf1e32f118486a42479bcb1ddcaad98dd12d3b
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<template>
  <div class="page-content">
    <section1 />
    <section2 />
    <section3 />
    <section4 />
    <section5 />
    <section6 />
    <section7 />
    <section8 />
    <section9 />
    <section10 />
    <section11 />
    <section12 />
    <section13 />
    <section14 />
    <section15 />
    <section16 />
  </div>
</template>
 
<script>
import section1 from "./section1.vue";
import section2 from "./section2.vue";
import section3 from "./section3.vue";
import section4 from "./section4.vue";
import section5 from "./section5.vue";
import section6 from "./section6.vue";
import section7 from "./section7.vue";
import section8 from "./section8.vue";
import section9 from "./section9.vue";
import section10 from "./section10.vue";
import section11 from "./section11.vue";
import section12 from "./section12.vue";
import section13 from "./section13.vue";
import section14 from "./section14.vue";
import section15 from "./section15.vue";
import section16 from "./section16.vue";
 
export default {
  name: "temp-book",
  components: {
    section1,
    section2,
    section3,
    section4,
    section5,
    section6,
    section7,
    section8,
    section9,
    section10,
    section11,
    section12,
    section13,
    section14,
    section15,
    section16,
  },
  methods: {},
};
</script>
 
<style lang="less" scoped></style>