vue自定义判空指令

// 组件内部指令
directives: {
// 指令名称
check: {
// 钩子。被绑定元素插入父节点时调用
inserted: (el) => {
// 正则-验证数字
const r = /^[0-9]*$/
// input 添加失焦时间
el.addEventListener('blur', (e) => {
// 未匹配成功
if (!r.test(e.target.value)) {
el.style.borderColor = '#f00'
} else {
el.style.borderColor = '#000'
}
})
}

}
},

posted on 2022-01-15 09:55  巨星太空易  阅读(148)  评论(0)    收藏  举报