派生自 wuyushui/SewerAndRainNetwork

chenzeping
2021-03-29 bedfd1ab5b85d84841b04e9845197cd5ebd81b52
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
  <div class="gas-video">
    <video width="100%" height="100%" controls>
      <source src="movie.mp4" type="video/mp4">
      <source src="movie.ogg" type="video/ogg">
    </video>
  </div>
</template>
 
<script>
export default {
  name: 'GasVideo'
}
</script>
 
<style scoped>
</style>