Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 84x 84x 84x 1x 1x 1x 1x 1x 2x 2x 1x | import { isOn } from '@vue/shared' import { ComponentInternalInstance } from '../component' import { assertCompatEnabled, DeprecationTypes } from './compatConfig' export function getCompatListeners(instance: ComponentInternalInstance) { assertCompatEnabled(DeprecationTypes.INSTANCE_LISTENERS, instance) const listeners: Record<string, Function | Function[]> = {} const rawProps = instance.vnode.props Iif (!rawProps) { return listeners } for (const key in rawProps) { if (isOn(key)) { listeners[key[2].toLowerCase() + key.slice(3)] = rawProps[key] } } return listeners } |