14 lines
368 B
JavaScript
Raw Normal View History

// Components
import VImg from '../VImg/VImg';
// Utils
import { deprecate } from '../../util/console';
/* istanbul ignore next */
/* @vue/component */
export default VImg.extend({
name: 'v-card-media',
mounted: function mounted() {
deprecate('v-card-media', this.src ? 'v-img' : 'v-responsive', this);
}
});
//# sourceMappingURL=VCardMedia.js.map