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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
| <template>
| <div class="page-content">
| <section1 />
| <section2 />
| <section3 />
| <section4 />
| <section5 />
| <section6 />
| <section7 />
| <section8 />
| <section9 />
| <section10 />
| <section11 />
| <section12 />
| <section13 />
| <section14 />
| <section15 />
| <section16 />
| <section17 />
| <section18 />
| <section19 />
| <section20 />
| <section21 />
| <section22 />
| <section23 />
| <section24 />
| <section25 />
| <section26 />
| <section27 />
| <section28 />
| <section29 />
| </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";
| import section17 from "./section17.vue";
| import section18 from "./section18.vue";
| import section19 from "./section19.vue";
| import section20 from "./section20.vue";
| import section21 from "./section21.vue";
| import section22 from "./section22.vue";
| import section23 from "./section23.vue";
| import section24 from "./section24.vue";
| import section25 from "./section25.vue";
| import section26 from "./section26.vue";
| import section27 from "./section27.vue";
| import section28 from "./section28.vue";
| import section29 from "./section29.vue";
|
| export default {
| name: "temp-book",
| components: {
| section1,
| section2,
| section3,
| section4,
| section5,
| section6,
| section7,
| section8,
| section9,
| section10,
| section11,
| section12,
| section13,
| section14,
| section15,
| section16,
| section17,
| section18,
| section19,
| section20,
| section21,
| section22,
| section23,
| section24,
| section25,
| section26,
| section27,
| section28,
| section29,
| },
| methods: {},
| };
| </script>
|
| <style lang="less" scoped></style>
|
|