Created
September 20, 2022 11:14
-
-
Save devbyray/7667b330b483c40b28f2bf9eb5a8b7cb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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