seekbar bugfix

This commit is contained in:
Nikita Krupin 2022-06-08 12:55:10 -04:00
parent 3e1340d616
commit 67e3ff1f31
1 changed files with 5 additions and 1 deletions

View File

@ -21,7 +21,7 @@
:style=" :style="
fullscreen fullscreen
? 'width: calc(100% - 2rem); left: 1rem; bottom: 51px;' ? 'width: calc(100% - 2rem); left: 1rem; bottom: 51px;'
: 'width: calc(100% - 0.8rem); left: 0.4rem; bottom: 0;' : 'width: calc(100% - 0.5rem); left: 0.25rem; bottom: 0;'
" "
:thumb-size="0" :thumb-size="0"
:max="duration" :max="duration"
@ -81,6 +81,10 @@ export default {
type: Number, type: Number,
required: true, required: true,
}, },
seeking: {
type: Boolean,
required: true,
},
}, },
data: () => ({ data: () => ({
vidWrs: "", vidWrs: "",