detail-video.vue 518 字节
Newer Older
N
nenyah 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
<!--
 * @Description: 视频
 * @Author: Steven
 * @Date: 2020-09-10 15:15:21
 * @LastEditors: Steven
 * @LastEditTime: 2020-09-10 16:26:37
-->
<template>
  <view>
    <view class="uni-padding-wrap uni-common-mt">
      <view>
        <video
          id="myVideo"
          src="#"
          controls
        ></video>
      </view>
    </view>
  </view>
</template>

<script lang="ts">
import Vue from "vue"
export default Vue.extend({
  data() {
    return {
      src: "",
    }
  },
})
</script>

<style></style>