Piped/src/components/ChaptersBar.vue

28 lines
681 B
Vue
Raw Normal View History

<template>
<h2 v-t="'video.chapters'" />
2022-06-02 03:29:16 +00:00
<div :key="chapter.start" v-for="chapter in chapters" @click="$emit('seek', chapter.start)" class="chapter">
<img :src="chapter.image" :alt="chapter.title" class="h-12" />
<div class="ml-1">
<span class="text-xl" v-text="chapter.title" />
<br />
<span class="text-sm" v-text="timeFormat(chapter.start)" />
</div>
</div>
</template>
2022-01-26 04:39:36 +00:00
<style>
.chapter {
@apply flex items-center mb-2 cursor-pointer w-sm max-w-90vw;
}
</style>
<script setup>
import { defineProps, defineEmits } from "vue";
2022-05-19 21:17:58 +00:00
defineProps({
chapters: Object,
});
defineEmits(["seek"]);
</script>