Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VCardMedia.js 367B

12345678910111213
  1. // Components
  2. import VImg from '../VImg/VImg';
  3. // Utils
  4. import { deprecate } from '../../util/console';
  5. /* istanbul ignore next */
  6. /* @vue/component */
  7. export default VImg.extend({
  8. name: 'v-card-media',
  9. mounted: function mounted() {
  10. deprecate('v-card-media', this.src ? 'v-img' : 'v-responsive', this);
  11. }
  12. });
  13. //# sourceMappingURL=VCardMedia.js.map