@voltra/vue-player
Version:
A Vue port of react-player: components for playing a variety of URLs including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia, DailyMotion
13 lines (11 loc) • 308 B
JavaScript
import { playerMixin } from "./player";
import { configProps, tagOrComponentProps } from "../props";
import VueTypes from "vue-types";
export const metaPlayerMixin = {
mixins: [playerMixin],
props: {
config: configProps,
progressFrequency: VueTypes.number,
activePlayer: tagOrComponentProps,
},
};