项目原始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.
 
 
 
 

34 lines
668 B

  1. // Extensions
  2. import VWindow from '../VWindow/VWindow'; // Types & Components
  3. import { BaseItemGroup } from './../VItemGroup/VItemGroup';
  4. /* @vue/component */
  5. export default VWindow.extend({
  6. name: 'v-tabs-items',
  7. props: {
  8. mandatory: {
  9. type: Boolean,
  10. default: false
  11. }
  12. },
  13. computed: {
  14. classes() {
  15. return { ...VWindow.options.computed.classes.call(this),
  16. 'v-tabs-items': true
  17. };
  18. },
  19. isDark() {
  20. return this.rootIsDark;
  21. }
  22. },
  23. methods: {
  24. getValue(item, i) {
  25. return item.id || BaseItemGroup.options.methods.getValue.call(this, item, i);
  26. }
  27. }
  28. });
  29. //# sourceMappingURL=VTabsItems.js.map