一部分
This commit is contained in:
25
src/components/VideoPlay.vue
Normal file
25
src/components/VideoPlay.vue
Normal file
@@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<div class="video">
|
||||
<video src=""></video>
|
||||
</div>
|
||||
</template>
|
||||
<style lang="scss" scoped>
|
||||
.video{
|
||||
width: 976px;
|
||||
height: 563px;
|
||||
border-radius: 17px;
|
||||
>video{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue';
|
||||
|
||||
export default defineComponent({
|
||||
setup(){
|
||||
console.log(1)
|
||||
}
|
||||
})
|
||||
</script>
|
||||
Reference in New Issue
Block a user