開發模式:npm run dev是前端自己開發用的
生產模式:npm run build 打包之后給后端放在服務端上用的
Vue.config.productionTip = false
1
上面這行代碼的意思 是阻止顯示生產模式的消息。
如果沒有這行代碼,或者設置為true,控制台就會多出這么一段代碼。
You are running Vue in development mode.
Make sure to turn on production mode when deploying for production.
1
2
大概意思就是:
你運行的Vu是開發模式。為生產部署時,請確保啟用生產模式。