Vue 输入框禁止贴贴

240 阅读1分钟
<template>
  <div>
    <!-- 自定义输入框 -->
    <div
      class="formula-input"
      contentEditable='true'
      @paste="paste">
    </div>
    <!-- input 输入框 -->
    <input type="text" @paste="paste">
  </div>
</template>
<script>
export default {
  methods: {
    // 拦截贴贴事件
    paste (e) {
      e.preventDefault()
    }
  }
}
</script>
<style scoped>
.formula-input {
  width: 200px;
  height: 100px;
  background-color: yellow;
}
</style>