29 lines
436 B
JavaScript
Vendored
29 lines
436 B
JavaScript
Vendored
module.exports = {
|
|
props: ['user', 'teams'],
|
|
|
|
|
|
/**
|
|
* Load mixins for the component.
|
|
*/
|
|
mixins: [require('./../mixins/tab-state')],
|
|
|
|
|
|
/**
|
|
* The component's data.
|
|
*/
|
|
data() {
|
|
return {
|
|
billableType: 'user',
|
|
team: null
|
|
};
|
|
},
|
|
|
|
|
|
/**
|
|
* Prepare the component.
|
|
*/
|
|
mounted() {
|
|
this.usePushStateForTabs('.spark-settings-tabs');
|
|
}
|
|
};
|