UNPKG

vuetify

Version:

Vue.js 2 Semantic Component Framework

29 lines (25 loc) 579 B
// Helpers import { getObjectValueByPath } from '../../../util/helpers' /** * Select helpers * * @mixin * * Helper methods for the * v-select component */ export default { methods: { getText (item) { return this.getPropertyFromItem(item, this.itemText) }, getValue (item) { return this.getPropertyFromItem(item, this.itemValue) }, getPropertyFromItem (item, field) { if (item !== Object(item)) return item const value = getObjectValueByPath(item, field) return typeof value === 'undefined' ? item : value } } }