lijh
2022-01-12 bf6fbec0b5593eb28dc195a58a4208d29b79dfee
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
<template>
    <div class="blog-left-side-portion fadeInLeft">
        <div class="blog-cell-main-container ">
            <box1></box1>
        </div>
        <div class="blog-cell-main-container ">
            <box2></box2>
        </div>
        <div class="blog-cell-main-container ">
            <box3></box3>
        </div>
    </div>
</template>
 
<script>
    import box1 from "./box1.vue"
    import box2 from "./box2.vue"
    import box3 from "./box3.vue"
    export default {
        components: {
            box1,
            box2,
            box3,
        },
        data() {
            return {}
        }
    }
</script>
 
</script>
<style lang="less">
</style>