v-preventRight 禁止右键

67 阅读1分钟

禁止右键

export default {
  bind(el, binding, vnode) {
    el.oncontextmenu = function() { return false }
  }
}