inleft
2022-01-21 f9c38ed1b72fc96b96c1d3ffdcc1a66b03bd3b73
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)" />
6                 <boxFriend></boxFriend>
7             </a-col>
8         </a-row>
9     </div>
10 </template>
11
12 <script>
13     import boxFriend from "../mini/box-friend.vue"
14     export default {
15         components: {
16             boxFriend,
17         },
18
19         data() {
20             return {
21                 colApiMain: {
22                     xs: 24,
23                     sm: 24,
24                     md: {
25                         span: 24,
26                         offset: 0,
27                     },
28                     lg: {
29                         span: 20,
30                         offset: 2,
31                     },
32                     xl: {
33                         span: 20,
34                         offset: 2,
35                     },
36                     xxl: {
37                         span: 20,
38                         offset: 2,
39                     },
40                 }
41             }
42         }
43     }
44 </script>
45
46 <style lang="less">
47
48 </style>