Uncaught Error:
[vue-router] route config "component" for path: /home cannot be a string id.
Use an actual component instead
運行時不報錯,可是頁面顯示空白。打開控制檯顯示下圖:html
.vue
路徑/home的[vue router]route config「component」不能是字符串id 請改用實際的組件vue-router
在如下代碼中定位,能夠看到是組件的錯誤componentspa
export default new Router({ routes: [ { path:'/', redirect:'/home' }, { path:'/home', component:'Home' }, { path:'/cart', component:'Cart' }, { path:'/profile', component:'Profile' } ] })
發現 component:'Profile' 不能加引號code
去掉引號(component:Profile)後界面便可正常顯示。component