项目原始demo,不改动
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 

17 rivejä
366 B

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