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.

VTabItem.js 678B

1234567891011121314151617181920212223
  1. // Extensions
  2. import VWindowItem from '../VWindow/VWindowItem';
  3. // Mixins
  4. import { deprecate } from '../../util/console';
  5. /* @vue/component */
  6. export default VWindowItem.extend({
  7. name: 'v-tab-item',
  8. props: {
  9. id: String
  10. },
  11. render: function render(h) {
  12. var render = VWindowItem.options.render.call(this, h);
  13. // For backwards compatibility with v1.2
  14. /* istanbul ignore next */
  15. if (this.id) {
  16. deprecate('id', 'value', this);
  17. render.data.domProps = render.data.domProps || {};
  18. render.data.domProps.id = this.id;
  19. }
  20. return render;
  21. }
  22. });
  23. //# sourceMappingURL=VTabItem.js.map