UNPKG

vue-playlist

Version:

Simple vue component that takes an array of videos as a prop and stitches them together/plays seamlessly in a custom video player

13 lines (9 loc) 220 B
import Vue from "vue"; import VuePlaylist from "./Playlist.vue"; const Components = { VuePlaylist }; Object.keys(Components).forEach(name => { Vue.component(name, Components[name]); }); export default Components;