Skip to content

Instantly share code, notes, and snippets.

@devbyray
Created September 20, 2022 11:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devbyray/7667b330b483c40b28f2bf9eb5a8b7cb to your computer and use it in GitHub Desktop.
Save devbyray/7667b330b483c40b28f2bf9eb5a8b7cb to your computer and use it in GitHub Desktop.
<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