25 lines
489 B
JavaScript
25 lines
489 B
JavaScript
|
// Extensions
|
||
|
import { BaseItemGroup } from '../../components/VItemGroup/VItemGroup';
|
||
|
/* @vue/component */
|
||
|
|
||
|
export default BaseItemGroup.extend({
|
||
|
name: 'button-group',
|
||
|
|
||
|
provide() {
|
||
|
return {
|
||
|
btnToggle: this
|
||
|
};
|
||
|
},
|
||
|
|
||
|
computed: {
|
||
|
classes() {
|
||
|
return BaseItemGroup.options.computed.classes.call(this);
|
||
|
}
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
// Isn't being passed down through types
|
||
|
genData: BaseItemGroup.options.methods.genData
|
||
|
}
|
||
|
});
|
||
|
//# sourceMappingURL=index.js.map
|