0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-08 12:35:06 +00:00
VueTube/NUXT/components/Player/scrubber.vue

34 lines
445 B
Vue
Raw Normal View History

2022-03-30 12:32:08 +00:00
<template>
<div>
<div class="scrubber">
<div ref="progress" class="progress" />
<div ref="background" class="background" />
2022-03-30 12:32:08 +00:00
</div>
</div>
</template>
<script>
export default {
props: {
duration: {
type: Number,
default: 0,
},
endDuration: {
type: Number,
default: 0,
},
2022-03-30 12:32:08 +00:00
},
}
</script>
<style scoped>
.scrubber {
width: 100%;
height: 1em;
background: #000;
}
</style>