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.

VTabsSlider.js 348B

123456789101112
  1. import Colorable from '../../mixins/colorable';
  2. /* @vue/component */
  3. export default {
  4. name: 'v-tabs-slider',
  5. mixins: [Colorable],
  6. render: function render(h) {
  7. return h('div', this.setBackgroundColor(this.color || 'accent', {
  8. staticClass: 'v-tabs__slider'
  9. }));
  10. }
  11. };
  12. //# sourceMappingURL=VTabsSlider.js.map