bi/vue/plop-templates/utils.js
1340691923@qq.com ebbf4120bf 第一次提交
2022-01-26 16:40:50 +08:00

10 lines
155 B
JavaScript

exports.notEmpty = name => {
return v => {
if (!v || v.trim === '') {
return `${name} 不能为空`
} else {
return true
}
}
}