UNPKG

bootstrap-vue

Version:

Quickly integrate Bootstrap 4 components with Vue.js

37 lines (34 loc) 925 B
import { mergeData } from "../../utils"; import { arrayIncludes } from "../../utils/array"; export const props = { type: { type: String, default: "iframe", validator: str => arrayIncludes(["iframe", "embed", "video", "object", "img", "b-img", "b-img-lazy"], str) }, tag: { type: String, default: "div" }, aspect: { type: String, default: "16by9" } }; export default { functional: true, props, render(h, { props, data, children }) { return h( props.tag, { ref: data.ref, staticClass: "embed-responsive", class: { [`embed-responsive-${props.aspect}`]: Boolean(props.aspect) } }, [h(props.type, mergeData(data, { ref: '', staticClass: "embed-responsive-item" }), children)] ); } };