vue禁止在控制台编写输出语句(console,alert)

在main.js中添加下面代码
if(process.env.NODE_ENV !== 'development'){
  console.log = function(){}
  alert = function(){}
}


Jsky博客
请先登录后发表评论
  • 最新评论
  • 总共0条评论