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
| <template>
| <div class="page-content">
| <chapter0 />
| <chapter1 />
| <chapter2 />
| <chapter3 />
| <chapter4 />
| <chapter5 />
| <chapter6 />
| <chapter7 />
| <chapter8 />
| <chapter9 />
| <chapter10 />
| <chapter11 />
| <chapter12 />
| <chapter13 />
| </div>
| </template>
|
| <script>
| import chapter0 from "./chapter003.vue";
| import chapter1 from "./chapter003-1.vue";
| import chapter2 from "./chapter003-2.vue";
| import chapter3 from "./chapter003-3.vue";
| import chapter4 from "./chapter003-4.vue";
| import chapter5 from "./chapter003-5.vue";
| import chapter6 from "./chapter003-6.vue";
| import chapter7 from "./chapter003-7.vue";
| import chapter8 from "./chapter003-8.vue";
| import chapter9 from "./chapter003-9.vue";
| import chapter10 from "./chapter003-10.vue";
| import chapter11 from "./chapter003-11.vue";
| import chapter12 from "./chapter003-12.vue";
| import chapter13 from "./chapter003-13.vue";
|
| export default {
| name: "temp-book",
| components: {
| chapter0,
| chapter1,
| chapter2,
| chapter3,
| chapter4,
| chapter5,
| chapter6,
| chapter7,
| chapter8,
| chapter9,
| chapter10,
| chapter11,
| chapter12,
| chapter13,
| },
| methods: {},
| };
| </script>
|
| <style lang="less" scoped></style>
|
|