mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 04:08:34 +08:00
05c17b9b52
* fix(time-picker): fix/date-time-picker-positioning-issue - Make time-picker accepting popper-options injection * update the providing strategy
11 lines
267 B
TypeScript
11 lines
267 B
TypeScript
export const UPDATE_MODEL_EVENT = 'update:modelValue'
|
|
|
|
export const CHANGE_EVENT = 'change'
|
|
export const INPUT_EVENT = 'input'
|
|
|
|
export const VALIDATE_STATE_MAP = {
|
|
validating: 'el-icon-loading',
|
|
success: 'el-icon-circle-check',
|
|
error: 'el-icon-circle-close',
|
|
}
|