UNPKG

vuetube

Version:

A fast, lightweight, lazyload vue component acting as a thin layer over the YouTube IFrame Player API which renders fast

15 lines (11 loc) 331 B
import { YOUTUBE_API_URL } from '../utils/constants.js'; /** * Load youtube API * @link https://developers.google.com/youtube/iframe_api_reference */ function loadYoutubeAPI() { var script = document.createElement('script'); script.src = YOUTUBE_API_URL; document.head.appendChild(script); } export { loadYoutubeAPI };