Vue+Element-ui input禁止粘贴
2019-10-21 本文已影响0人
残_忆
<el-input v-model="resform.resPass" @paste.native.capture.prevent="handlePaste" type="password"></el-input>
添加@paste.native.capture.prevent="handlePaste"
//在vue函数中
handlePaste(){
//粘贴会触发来到这里,无操作就行
}