UNPKG

vuetify-wcag

Version:

VuetifyJS but then WCAG/A11Y compatible

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>, }, })