mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-08 12:35:06 +00:00
33 lines
445 B
Vue
33 lines
445 B
Vue
<template>
|
|
<div>
|
|
|
|
<div class="scrubber">
|
|
<div ref="progress" class="progress" />
|
|
<div ref="background" class="background" />
|
|
</div>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
duration: {
|
|
type: Number,
|
|
default: 0,
|
|
},
|
|
endDuration: {
|
|
type: Number,
|
|
default: 0,
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.scrubber {
|
|
width: 100%;
|
|
height: 1em;
|
|
background: #000;
|
|
}
|
|
</style>
|