UNPKG

vuetify

Version:

Vue Material Component Framework

14 lines (12 loc) 302 B
import Vue from 'vue' import { PropValidator } from 'vue/types/options' import { deepEqual } from '../../util/helpers' export default Vue.extend({ name: 'comparable', props: { valueComparator: { type: Function, default: deepEqual, } as PropValidator<typeof deepEqual>, }, })