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.

VSubheader.js 915B

1234567891011121314151617181920212223242526
  1. var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
  2. // Styles
  3. import '../../../src/stylus/components/_subheaders.styl';
  4. // Mixins
  5. import Themeable from '../../mixins/themeable';
  6. import mixins from '../../util/mixins';
  7. export default mixins(Themeable
  8. /* @vue/component */
  9. ).extend({
  10. name: 'v-subheader',
  11. props: {
  12. inset: Boolean
  13. },
  14. render: function render(h) {
  15. return h('div', {
  16. staticClass: 'v-subheader',
  17. class: _extends({
  18. 'v-subheader--inset': this.inset
  19. }, this.themeClasses),
  20. attrs: this.$attrs,
  21. on: this.$listeners
  22. }, this.$slots.default);
  23. }
  24. });
  25. //# sourceMappingURL=VSubheader.js.map