41 lines
807 B
Vue
41 lines
807 B
Vue
<!--
|
|
* @Date: 2020-12-14 09:07:03
|
|
* @LastEditors: zhp
|
|
* @LastEditTime: 2023-11-13 16:41:28
|
|
* @FilePath: \mt-bus-fe\src\views\OperationalOverview\components\baseTable.vue
|
|
* @Description:
|
|
-->
|
|
<template>
|
|
<div class="base-video-container">
|
|
<!-- <video id="v1" :style="{height: videoHeight + 'px'}" :src="require('../../../assets/video/3d.mkv')" autoplay loop muted /> -->
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'BaseVideo',
|
|
props: {
|
|
videoHeight: {
|
|
type: Number,
|
|
default: () => 200
|
|
},
|
|
beilv: {
|
|
type: Number,
|
|
default: () => 1
|
|
}
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.base-video-container{
|
|
width: 100%;
|
|
overflow: hidden;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
</style>
|