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
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)