1
YM
2024-05-22 e8f418421e7e6305db2ffc0516a555f04510d2e7
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
<template>
  <div class="public-books">
    <front001 />
    <front002 />
    <front003 />
    <front004 />
    <front005 />
    <front006 />
    <ChapterOne />
    <ChapterTwo />
    <ChapterThree />
    <ChapterFour />
    <ChapterFive />
    <!-- <chapterSix /> -->
    <!-- <chapterSeven /> -->
    <!-- <chapterEight /> -->
    <!-- <chapterNine /> -->
    <!-- <chapter010 /> -->
    <!-- <chapter011 /> -->
    <!-- <chapter012 /> -->
    <!-- <chapter013 /> -->
    <!-- <chapter014 /> -->
    <!-- <chapter015 /> -->
    <!-- <chapter016 /> -->
    <!-- <chapter017 /> -->
    <!-- <topic008 /> -->
  </div>
</template>
 
<script>
import front001 from "./view/front001";
import front002 from "./view/front002";
import front003 from "./view/front003";
import front004 from "./view/front004";
import front005 from "./view/front005";
import front006 from "./view/front006";
import ChapterOne from "./view/chapter001";
import ChapterTwo from "./view/chapter002";
import ChapterThree from "./view/chapter003";
import ChapterFour from "./view/chapter004";
import ChapterFive from "./view/chapter005";
import chapterSix from "./view/chapter006";
import chapterSeven from "./view/chapter007";
import chapterEight from "./view/chapter008";
import chapterNine from "./view/chapter009";
import chapter010 from "./view/chapter010";
import chapter011 from "./view/chapter011";
import chapter012 from "./view/chapter012";
import chapter013 from "./view/chapter013";
import chapter014 from "./view/chapter014";
import chapter015 from "./view/chapter015";
import chapter016 from "./view/chapter016";
import chapter017 from "./view/chapter017";
 
export default {
  name: "temp-book",
  components: {
    front001,
    front002,
    front003,
    front004,
    front005,
    front006,
    ChapterOne,
    ChapterTwo,
    ChapterThree,
    ChapterFour,
    ChapterFive,
    chapterSix,
    chapterSeven,
    chapterEight,
    chapterNine,
    chapter010,
    chapter011,
    chapter012,
    chapter013,
    chapter014,
    chapter015,
    chapter016,
    chapter017,
  },
  methods: {},
};
</script>
 
<style lang="less">
@import './css/default.less';
</style>