(props, modelName)
| 3932 | } |
| 3933 | let currentApp = null; |
| 3934 | const getModelModifiers = (props, modelName) => { |
| 3935 | return modelName === "modelValue" || modelName === "model-value" ? props.modelModifiers : props[`${modelName}Modifiers`] || props[`${camelize(modelName)}Modifiers`] || props[`${hyphenate(modelName)}Modifiers`]; |
| 3936 | }; |
| 3937 | function emit(instance, event, ...rawArgs) { |
| 3938 | if (instance.isUnmounted) return; |
| 3939 | const props = instance.vnode.props || EMPTY_OBJ; |