<el-input
     clearable
     v-model="text"
     placeholder="请输入内容"
     @paste.native.capture.prevent="handlePaste"
 ></el-input>
 handlePaste(e){
    var clip = e.clipboardData.getData('Text');
    this.text = clip;
 },

 

Logo

Vue社区为您提供最前沿的新闻资讯和知识内容

更多推荐