This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/vuetify/lib/components/VTabs/VTabsItems.js
2019-08-11 20:48:02 +02:00

34 lines
No EOL
668 B
JavaScript

// Extensions
import VWindow from '../VWindow/VWindow'; // Types & Components
import { BaseItemGroup } from './../VItemGroup/VItemGroup';
/* @vue/component */
export default VWindow.extend({
name: 'v-tabs-items',
props: {
mandatory: {
type: Boolean,
default: false
}
},
computed: {
classes() {
return { ...VWindow.options.computed.classes.call(this),
'v-tabs-items': true
};
},
isDark() {
return this.rootIsDark;
}
},
methods: {
getValue(item, i) {
return item.id || BaseItemGroup.options.methods.getValue.call(this, item, i);
}
}
});
//# sourceMappingURL=VTabsItems.js.map