// 生产环境阻止鼠标右键
Vue.directive('preventright', {
  bind: function(el, binding, vnode) {
    if (process.env.NODE_ENV !== 'development') {
      el.oncontextmenu = function() { return false }
    }
  }
})
 
app.vue
<template>
  <div >
    <router-view />
    <WorkFlowNotice />
  </div>
</template>

相关文章:

  • 2021-12-24
  • 2021-06-27
  • 2022-12-23
  • 2021-12-12
  • 2021-12-29
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-11
相关资源
相似解决方案