| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 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/src/components/VItemGroup/ |
Upload File : |
// Mixins
import { factory as GroupableFactory } from '../../mixins/groupable'
// Utilities
import mixins from '../../util/mixins'
import { consoleWarn } from '../../util/console'
// Types
import Vue from 'vue'
import { VNode, ScopedSlotChildren } from 'vue/types/vnode'
/* @vue/component */
export const BaseItem = Vue.extend({
props: {
activeClass: String,
value: {
required: false,
},
},
data: () => ({
isActive: false,
}),
methods: {
toggle () {
this.isActive = !this.isActive
},
},
render (): VNode {
if (!this.$scopedSlots.default) {
consoleWarn('v-item is missing a default scopedSlot', this)
return null as any
}
let element: VNode | ScopedSlotChildren
/* istanbul ignore else */
if (this.$scopedSlots.default) {
element = this.$scopedSlots.default({
active: this.isActive,
toggle: this.toggle,
})
}
if (Array.isArray(element) && element.length === 1) {
element = element[0]
}
if (!element || Array.isArray(element) || !element.tag) {
consoleWarn('v-item should only contain a single element', this)
return element as any
}
element.data = this._b(element.data || {}, element.tag!, {
class: { [this.activeClass]: this.isActive },
})
return element
},
})
export default mixins(
BaseItem,
GroupableFactory('itemGroup', 'v-item', 'v-item-group')
).extend({
name: 'v-item',
})