inleft
2022-02-28 f60b31044a9a117244e7cd5d51f29b53d425a409
commit | author | age
56a4b8 1 <template>
I 2     <div class="blog-main">
3         <a-row>
aab811 4             <a-col v-bind="colApiMain " class="holdHeight">
I 5                 <a-page-header title="我的网盘" style="padding: 0px;" @back="() => this.$router.go(-1)" />
f60b31 6                 <!-- <net-file></net-file> -->
I 7                 <myVideo></myVideo>
56a4b8 8             </a-col>
I 9         </a-row>
10     </div>
11 </template>
12
13 <script>
aab811 14     import netFile from "../mini/box9-netFile.vue"
f60b31 15     import myVideo from "../mini/box14-video.vue"
56a4b8 16     export default {
I 17         components: {
aab811 18             netFile,
f60b31 19             myVideo,
56a4b8 20         },
I 21
22         data() {
23             return {
24                 colApiMain: {
25                     xs: 24,
26                     sm: 24,
aab811 27                     md: {
I 28                         span: 24,
29                         offset: 0,
30                     },
31                     lg: {
32                         span: 20,
33                         offset: 2,
34                     },
35                     xl: {
36                         span: 20,
37                         offset: 2,
38                     },
39                     xxl: {
40                         span: 20,
41                         offset: 2,
42                     },
56a4b8 43                 }
I 44             }
45         }
46     }
47 </script>
48
49 <style lang="less">
aab811 50
56a4b8 51 </style>