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
| <template>
| <div class="blog-left-side fadeInLeft">
| <div class="blog-cell">
| <box1></box1>
| </div>
| <div class="blog-cell">
| <box2></box2>
| </div>
| <div class="blog-cell">
| <box3></box3>
| </div>
| </div>
| </template>
|
| <script>
| import box1 from "../mini/box1-info.vue"
| import box2 from "../mini/box2-class.vue"
| import box3 from "../mini/box3-archive.vue"
| export default {
| components: {
| box1,
| box2,
| box3,
| },
| data() {
| return {}
| }
| }
| </script>
|
|