mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
10 lines
154 B
JavaScript
10 lines
154 B
JavaScript
exports.notEmpty = name => {
|
|
return v => {
|
|
if (!v || v.trim === '') {
|
|
return `${name} is required`
|
|
} else {
|
|
return true
|
|
}
|
|
}
|
|
}
|