Disable “development mode” warning in VueJS

前端 未结 3 1659
隐瞒了意图╮
隐瞒了意图╮ 2020-12-29 03:12

I\'m running Vue in development mode, and I get this message every time I load the page:

\"You are running Vue in development mode. Make sure to turn

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-29 03:24

    As of Vue.JS 2.2.0 the development warning can be disabled as follows:

    Vue.config.productionTip = false
    

    should be added to main.js (or main.ts if using TypeScript)

提交回复
热议问题