在VueJS中禁用“开发模式”警告

我在开发模式下运行Vue,每次加载页面时都会收到以下消息:

“您正在开发模式下运行Vue。在部署用于生产时,请确保打开生产模式。有关更多提示,请参见 https://vuejs.org/guide/deployment.html

有没有一种方法可以禁用它而不切换到生产模式?

斯丁JinJinHarry2020/03/12 17:38:21

Open file app.js and add the next code

Vue.config.productionTip = false

在此处输入图片说明

Read more in Vue Api

神乐Tony2020/03/12 17:38:21

从Vue.JS 2.2.0开始,可以按以下方式禁用开发警告:

Vue.config.productionTip = false

应该添加到main.js(如果使用TypeScript,则应添加到main.ts)