美文网首页
Vue+Element-ui input禁止粘贴

Vue+Element-ui input禁止粘贴

作者: 残_忆 | 来源:发表于2019-10-21 17:25 被阅读0次
    <el-input v-model="resform.resPass" @paste.native.capture.prevent="handlePaste" type="password"></el-input>
    
    

    添加@paste.native.capture.prevent="handlePaste"

        //在vue函数中
        handlePaste(){
            //粘贴会触发来到这里,无操作就行
        }
    

    相关文章

      网友评论

          本文标题:Vue+Element-ui input禁止粘贴

          本文链接:https://www.haomeiwen.com/subject/jbxcvctx.html