ERROR Cannot find module '@/router/' at webpackMissingModule (webpack-internal:///./src/main.js:4:50) at eval (webpack-internal:///./src/main.js:4:134) at ./src/main.js (http://localhost:8080/js/app.js:331:1) at __webpack_require__ (http://localhost:8080/js/app.js:444:33) at http://localhost:8080/js/app.js:1565:109 at __webpack_require__.O (http://localhost:8080/js/app.js:490:23) at http://localhost:8080/js/app.js:1566:53 at http://localhost:8080/js/app.js:1568:12
图示
4.2 挂载router时,如果名字相同可省略
省略前
1 2 3 4 5 6
import router from '@/router'
new Vue({ render: h => h(App), router: router }).$mount('#app')
省略后
1 2 3 4
new Vue({ render: h => h(App), router }).$mount('#app')