We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69f5286 commit e273566Copy full SHA for e273566
src/components/EditingScreen3.vue
@@ -6,16 +6,20 @@
6
placeholder="https://"
7
icon-name="mdi-link"
8
/>
9
- <editor-textarea title="動画サムネイル・キャプション表示" />
+ <video-thumbnail
10
+ title="動画サムネイル・キャプション表示"
11
+ thumbnail-url="http://img.youtube.com/vi/1o6Dg8OOJB8/sddefault.jpg"
12
+ caption="動画のキャプションが入ります"
13
+ />
14
</div>
15
</template>
16
17
<script lang="ts">
18
import Vue from 'vue'
19
import EditorField from '@/components/EditorField.vue'
-import EditorTextarea from '@/components/EditorTextarea.vue'
20
+import VideoThumbnail from '@/components/VideoThumbnail.vue'
21
22
export default Vue.extend({
- components: { EditorField, EditorTextarea }
23
+ components: { EditorField, VideoThumbnail }
24
})
25
</script>
0 commit comments