inleft
2022-08-14 a3ab3afe580daa80e9689f6e513e75a385f75bac
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
<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,
        },
    }
</script>