VueRouter报错:Uncaught TypeError Object(...) is not a function

Uncaught TypeError: Object(…) is not a function

记录一下VueRouter报错及解决方式
这里是使用VueRouter以后控制台报错了
报错信息:Uncaught TypeError: Object(…) is not a function

VueRouter报错:Uncaught TypeError Object(...) is not a function_第1张图片
经过反复尝试发现是vue-router版本过高,所以报错
在package.json文件中查看版本号,vue-router版本是4.0.12

VueRouter报错:Uncaught TypeError Object(...) is not a function_第2张图片

只需要将vue-router版本降低就不会报错了
在终端输入 npm i [email protected]
希望能帮助大家~

你可能感兴趣的:(前端,html,vue.js,前端,javascript)