13 lines
367 B
JavaScript
13 lines
367 B
JavaScript
// 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
|