UNPKG

vuetify

Version:

Vue.js 2 Semantic Component Framework

66 lines (55 loc) 1.21 kB
// Extensions import VWindow from '../VWindow/VWindow' /* @vue/component */ export default VWindow.extend({ name: 'v-tabs-items', inject: { registerItems: { default: null }, tabProxy: { default: null }, unregisterItems: { default: null } }, props: { cycle: Boolean }, watch: { internalValue (val) { /* istanbul ignore else */ if (this.tabProxy) this.tabProxy(val) } }, created () { this.registerItems && this.registerItems(this.changeModel) }, beforeDestroy () { this.unregisterItems && this.unregisterItems() }, methods: { changeModel (val) { this.internalValue = val }, // For backwards compatability with v1.2 getValue (item, i) { /* istanbul ignore if */ if (item.id) return item.id return VWindow.options.methods.getValue.call(this, item, i) }, next () { if (!this.cycle && this.internalIndex === this.items.length - 1) { return } VWindow.options.methods.next.call(this) }, prev () { if (!this.cycle && this.internalIndex === 0) { return } VWindow.options.methods.prev.call(this) } } })