[Vue warn]: Error in render: “TypeError: Cannot read properties of undefined (reading ‘matched‘)“

描述:

vue中在路由那里你可能经常遇到[Vue warn]: Error in render: "TypeError: Cannot read properties of undefined (reading 'matched')"的报错,导致页面无法显示的问题。如图:

[Vue warn]: Error in render: “TypeError: Cannot read properties of undefined (reading ‘matched‘)“_第1张图片

 

解决:

出现这种情况,你应该首先查看路由的引入是否正确!!在vue里面使用路由有一个比较需要注意的地方,就是要使用router来注册,连Router都不行,严格使用router。

import router from './router'

//引入的时候可以不设置router,注册使用的时候必须是router

你可能感兴趣的:(前端,笔记,踩坑之路,vue.js,javascript,前端)