|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 'use strict';
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- /**
- * Tabs watchers
- *
- * @mixin
- */
- /* @vue/component */
- exports.default = {
- watch: {
- activeTab: function activeTab(val, oldVal) {
- this.setOverflow();
- if (!val) return;
- this.tabItems && this.tabItems(this.getValue(val, this.items.indexOf(val)));
- // Do nothing for first tab
- // is handled from isBooted
- // watcher
- if (oldVal == null) return;
- this.updateTabsView();
- },
-
- alignWithTitle: 'callSlider',
- centered: 'callSlider',
- fixedTabs: 'callSlider',
- hasArrows: function hasArrows(val) {
- if (!val) this.scrollOffset = 0;
- },
-
- /* @deprecate */
- internalValue: function internalValue(val) {
- /* istanbul ignore else */
- if (!this.$listeners['input']) return;
- this.$emit('input', val);
- },
-
- lazyValue: 'updateTabs',
- right: 'callSlider',
- '$vuetify.application.left': 'onResize',
- '$vuetify.application.right': 'onResize',
- scrollOffset: function scrollOffset(val) {
- this.$refs.container.style.transform = 'translateX(' + -val + 'px)';
- if (this.hasArrows) {
- this.prevIconVisible = this.checkPrevIcon();
- this.nextIconVisible = this.checkNextIcon();
- }
- }
- }
- };
- //# sourceMappingURL=tabs-watchers.js.map
|