23 lines
325 B
Plaintext
23 lines
325 B
Plaintext
<template>
|
|
<view class="min-page">
|
|
<my-video-list></my-video-list>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {onLoad,onShow} from '@dcloudio/uni-app'
|
|
onLoad((opt)=>{
|
|
|
|
})
|
|
onShow(()=>{
|
|
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.min-page{
|
|
height: 100vh;
|
|
background-color: #000;
|
|
overflow: hidden;
|
|
}
|
|
</style> |