Files
element-plus/packages/utils/constants.ts
kooriookami a17088d5eb fix(slider): fix input event and style (#1786)
* fix(slider): fix input event and style

fix #1781

* fix: update

* fix: fix indent
2021-04-09 10:40:50 +08:00

12 lines
268 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',
}