| Server IP : 34.87.99.72 / Your IP : 216.73.216.122 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/apache/htdocs/app/node_modules/vuetify/lib/components/VTabs/ |
Upload File : |
// Extensions
import { BaseSlideGroup } from '../VSlideGroup/VSlideGroup'; // Mixins
import Themeable from '../../mixins/themeable';
import SSRBootable from '../../mixins/ssr-bootable'; // Utilities
import mixins from '../../util/mixins';
export default mixins(BaseSlideGroup, SSRBootable, Themeable
/* @vue/component */
).extend({
name: 'v-tabs-bar',
provide() {
return {
tabsBar: this
};
},
computed: {
classes() {
return { ...BaseSlideGroup.options.computed.classes.call(this),
'v-tabs-bar': true,
'v-tabs-bar--is-mobile': this.isMobile,
// TODO: Remove this and move to v-slide-group
'v-tabs-bar--show-arrows': this.showArrows,
...this.themeClasses
};
}
},
watch: {
items: 'callSlider',
internalValue: 'callSlider',
$route: 'onRouteChange'
},
methods: {
callSlider() {
if (!this.isBooted) return;
this.$emit('call:slider');
},
genContent() {
const render = BaseSlideGroup.options.methods.genContent.call(this);
render.data = render.data || {};
render.data.staticClass += ' v-tabs-bar__content';
return render;
},
onRouteChange(val, oldVal) {
/* istanbul ignore next */
if (this.mandatory) return;
const items = this.items;
const newPath = val.path;
const oldPath = oldVal.path;
let hasNew = false;
let hasOld = false;
for (const item of items) {
if (item.to === newPath) hasNew = true;else if (item.to === oldPath) hasOld = true;
if (hasNew && hasOld) break;
} // If we have an old item and not a new one
// it's assumed that the user navigated to
// a path that is not present in the items
if (!hasNew && hasOld) this.internalValue = undefined;
}
},
render(h) {
const render = BaseSlideGroup.options.render.call(this, h);
render.data.attrs = {
role: 'tablist'
};
return render;
}
});
//# sourceMappingURL=VTabsBar.js.map