inleft
2022-01-15 41b36f013d4103ffc59fd58feb6b6177ee5b04f7
commit | author | age
41b36f 1 <template>
I 2     <div  class="blog-left-side fadeInLeft">
3         <div class="blog-cell">
4             <box1></box1>
5         </div>
6         <div class="blog-cell">
7             <box2></box2>
8         </div>
9         <div class="blog-cell">
10             <box3></box3>
11         </div>
12     </div>
13 </template>
14
15 <script>
16     import box1 from "../mini/box1-info.vue"
17     import box2 from "../mini/box2-class.vue"
18     import box3 from "../mini/box3-archive.vue"
19     export default {
20         components: {
21             box1,
22             box2,
23             box3,
24         },
25         data() {
26             return {}
27         }
28     }
29 </script>
30