inleft
2022-02-17 6bcd135673be57b00ea68e58f1ae6aef2ac19e21
commit | author | age
06ee76 1 <template>
L 2     <div class="blog-main">
3         <a-row>
4             <a-col v-bind="colApiMain " class="holdHeight">
5                 <a-page-header title="朋友们" style="padding: 0px;" @back="() => this.$router.go(-1)" />
6bcd13 6                 <keep-alive>
I 7                     <boxFriend></boxFriend>
8                 </keep-alive>
06ee76 9             </a-col>
L 10         </a-row>
11     </div>
12 </template>
13
14 <script>
15     import boxFriend from "../mini/box-friend.vue"
16     export default {
17         components: {
18             boxFriend,
19         },
20
21         data() {
22             return {
23                 colApiMain: {
24                     xs: 24,
25                     sm: 24,
26                     md: {
27                         span: 24,
28                         offset: 0,
29                     },
30                     lg: {
31                         span: 20,
32                         offset: 2,
33                     },
34                     xl: {
35                         span: 20,
36                         offset: 2,
37                     },
38                     xxl: {
39                         span: 20,
40                         offset: 2,
41                     },
42                 }
43             }
44         }
45     }
46 </script>
47
48 <style lang="less">
49
50 </style>