inleft
2022-03-02 846bd0e9adb70bb23778045ee1a252a6a58adc4f
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<template>
    <div class="blog-main">
        <a-row>
            <a-col v-bind="colApiMain " class="holdHeight">
                <a-page-header title="朋友们" style="padding: 0px;" @back="() => this.$router.go(-1)" />
                <keep-alive>
                    <boxFriend></boxFriend>
                </keep-alive>
            </a-col>
        </a-row>
    </div>
</template>
 
<script>
    import boxFriend from "../mini/box-friend.vue"
    export default {
        components: {
            boxFriend,
        },
 
        data() {
            return {
                colApiMain: {
                    xs: 24,
                    sm: 24,
                    md: {
                        span: 24,
                        offset: 0,
                    },
                    lg: {
                        span: 20,
                        offset: 2,
                    },
                    xl: {
                        span: 20,
                        offset: 2,
                    },
                    xxl: {
                        span: 20,
                        offset: 2,
                    },
                }
            }
        }
    }
</script>
 
<style lang="less">
 
</style>