视频详情
This commit is contained in:
@@ -1,14 +1,38 @@
|
||||
<template>
|
||||
<div class="videoinfo">
|
||||
<div class="info">
|
||||
<VideoPlay></VideoPlay>
|
||||
<VideoCont></VideoCont>
|
||||
</div>
|
||||
<VideoReview class="review"></VideoReview>
|
||||
</div>
|
||||
</template>
|
||||
<style lang="scss" scoped>
|
||||
|
||||
.videoinfo{
|
||||
width: 1320px;
|
||||
height: 563px;
|
||||
.info{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.review{
|
||||
margin-top: 28px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue';
|
||||
|
||||
import VideoPlay from "@/components/VideoPlay.vue"
|
||||
import VideoCont from "@/components/VideoCont.vue"
|
||||
import VideoReview from "@/components/VideoReview.vue"
|
||||
export default defineComponent({
|
||||
components:{
|
||||
VideoPlay,
|
||||
VideoCont,
|
||||
VideoReview
|
||||
},
|
||||
setup(){
|
||||
|
||||
console.log(1)
|
||||
}
|
||||
})
|
||||
</script>
|
||||
Reference in New Issue
Block a user