7:8-17 "export 'default' (imported as 'VueRouter') was not found in 'vue-router'问题解决
如题因为vue与vue-router是官方的,所以版本需要对应:
查找了很多解决办法,最后发现是因为版本不对应,导致的问题,需要将新版本4.X版本的VueRouter卸载
npm uninstall vue-router 卸载原有路由
再次安装3.X版本,运行如下命令:
npm i vue-router@3.5.2 安装低版本的router
,就可以运行啦!