vue项目中如何利用v-on:blur
监听失焦事件,下面web建站小编给大家简单介绍一下!
具体语法如下:
<template> <div> <label for="username">用户名:</label> <input type="text" id="username" v-model="username" @blur="checkUsername"> <div v-show="showErrorMsg">{{errorMsg}}</div> </div> </template> <script> export default { data() { return { username: '', showErrorMsg: false, errorMsg: '' } }, methods: { checkUsername() { // 这里我们简单判断用户名是否为空 if (this.username === '') { this.showErrorMsg = true this.errorMsg = '用户名不能为空' } else { this.showErrorMsg = false } } } } </script>
标签: v-on:blur, vue失焦事件, vue监听事件
上面是“vue中如何利用v-on:blur监听失焦事件”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_4879.html
workflows工作流
- 一个孤独的斗篷人物站在一座巨大的雕塑旁
- 一种长着彩虹翅膀的虫子comfyui工作流
- 一个浑身皮毛看起来像丘巴卡的3d动漫人物
- 文生图工作流:图片合并comfyui工作流
- 基础扩图comfyui工作流
- 城市里出现一只可爱的小生物ComfyUI工作流
- 一条赤壁龙从蛋中孵化出来ComfyUI工作流
- 图生图工作流:一键转换成高清动漫照片
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!