custom-bootstrap-vue
Version:
Custom version of bootstrap-vue created for providing specific theme to a particular project
60 lines (58 loc) • 1.43 kB
JavaScript
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
import Vue from '../../utils/vue';
import { BAspect } from '../aspect';
import { BSkeleton } from './skeleton';
var NAME = 'BSkeletonImg'; // @vue/component
export var BSkeletonImg = /*#__PURE__*/Vue.extend({
name: NAME,
functional: true,
props: {
animation: {
type: String
},
aspect: {
type: String,
default: '16:9'
},
noAspect: {
type: Boolean,
default: false
},
height: {
type: String
},
width: {
type: String
},
variant: {
type: String
},
cardImg: {
type: String
}
},
render: function render(h, _ref) {
var props = _ref.props;
var aspect = props.aspect,
width = props.width,
height = props.height,
animation = props.animation,
variant = props.variant,
cardImg = props.cardImg;
var $img = h(BSkeleton, {
props: {
type: 'img',
width: width,
height: height,
animation: animation,
variant: variant
},
class: _defineProperty({}, "card-img-".concat(cardImg), cardImg)
});
return props.noAspect ? $img : h(BAspect, {
props: {
aspect: aspect
}
}, [$img]);
}
});