This commit is contained in:
ThatOneCalculator 2022-07-13 22:58:09 -07:00
parent 621e2cdb5b
commit b17fb633ff
1 changed files with 6 additions and 1 deletions

View File

@ -39,7 +39,12 @@ const props = defineProps<{
}>();
const videoEl = $ref<HTMLVideoElement | null>();
Vlitejs.registerPlugin('pip', VlitejsPip);
try {
Vlitejs.registerPlugin('pip', VlitejsPip);
}
catch (err) {
console.error('Pip plugin is already registered');
}
const playerInstance = ref();