1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| <template>
| <div class="page-content">
| <pageHeader></pageHeader>
| <chapterOne />
| </div>
| </template>
| <script>
| import pageHeader from './header.vue'
| import chapterOne from "./chapter001.vue";
| export default {
| name: "pageContent",
| components: { pageHeader,chapterOne },
| };
| </script>
| <style scoped lang="less">
| .page-content {
| max-width: 816px;
| min-width: 375px;
| margin: 0 auto;
| padding-bottom: 100px;
| }
| </style>
|
|