UNPKG

vuetify

Version:

Vue.js 2 Semantic Component Framework

14 lines (12 loc) 303 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 any as PropValidator<typeof deepEqual> } })