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
| <template>
| <div>
| <section1 />
| <section2 />
| <section3 />
| <section4 />
| <section5 />
| <section6 />
| </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";
|
| export default {
| name: "temp-book",
| components: {
| section1,
| section2,
| section3,
| section4,
| section5,
| section6,
| },
| methods: {},
| };
| </script>
|
| <style lang="less" scoped></style>
|
|