mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-03 19:58:09 +08:00
869cec59ba
* feat(input): migrate input component simply re #95 * feat(input): mainly complete input component & add more input tests * fix: address pr comments Co-authored-by: 陈婉玉 <simonaliachen@gmail.com>
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
export const UPDATE_MODEL_EVENT = 'update:modelValue'
|
|
|
|
export const VALIDATE_STATE_MAP = {
|
|
validating: 'el-icon-loading',
|
|
success: 'el-icon-circle-check',
|
|
error: 'el-icon-circle-close',
|
|
}
|
|
|