mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-29 05:28:00 +02:00
Changes:
- Range Headers for videoplayback - Changed behaviour of local playlists - Added UTC timestamps to footer
This commit is contained in:
parent
dac17fbc2d
commit
599e024afa
12 changed files with 465 additions and 416 deletions
|
@ -2,8 +2,9 @@
|
|||
import { ref, watch } from 'vue';
|
||||
|
||||
const props = defineProps(['display', 'title', 'n']),
|
||||
emit = defineEmits(['show']),
|
||||
show = ref(props.display);
|
||||
emit = defineEmits(['show']);
|
||||
|
||||
const show = ref(props.display);
|
||||
|
||||
watch(
|
||||
() => props.display,
|
||||
|
@ -13,7 +14,7 @@ watch(
|
|||
},
|
||||
);
|
||||
|
||||
watch(show, n => {
|
||||
watch(show, () => {
|
||||
emit('show', show.value);
|
||||
});
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue