summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repository/components/blob_viewers/video_viewer.vue
blob: dec0c4802ca15077614c9dd15c2cad8c6d9a486e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
export default {
  props: {
    url: {
      type: String,
      required: true,
    },
  },
};
</script>
<template>
  <div class="gl-text-center gl-p-7 gl-bg-gray-50">
    <video :src="url" controls data-testid="video" class="gl-max-w-full"></video>
  </div>
</template>