Skip to content

Instantly share code, notes, and snippets.

@devbyray
Created September 20, 2022 11:14
Embed
What would you like to do?
<template>
<div class="youtube">
<lite-youtube
:videoid="id"
:playlabel="label"
/>
</div>
</template>
<script>
export default {
props: {
id: String,
label: String,
},
fetchOnServer: false,
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment