beelink/src/components/VideoPlay.vue

27 lines
454 B
Vue
Raw Normal View History

2020-09-29 01:26:52 +00:00
<template>
<div class="video">
<video src=""></video>
</div>
</template>
<style lang="scss" scoped>
.video{
width: 976px;
height: 563px;
border-radius: 17px;
2020-09-29 07:56:33 +00:00
background-color: #0f0;
overflow: hidden;
2020-09-29 01:26:52 +00:00
>video{
width: 100%;
height: 100%;
}
}
</style>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
setup(){
console.log(1)
}
})
</script>