Vue 打包后报错 Uncaught TypeError: Cannot redefine property: $router

Posted lyt0207

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 打包后报错 Uncaught TypeError: Cannot redefine property: $router相关的知识,希望对你有一定的参考价值。

原因:就如报错提示所描述的,不能重新定义$router,说明是重复定了$router。通常是因为在项目中安装了vue-router的依赖并且用Vue.use()使用了vue-router,还在index.html页面引入了vue-router.js文件。

解决方法有两种:

  1. 去掉index.html中的vue-router.js文件的引入。如果没有使用externals的话可以直接使用这种方法。

  2. 删除vue-router的依赖,包括依赖包和package.json中的vue-router。使用了externals来外部引入vue-router的话则用这种方法。

提示:从vue-router.js文件引入的router对象名为VueRouter,新建router对象是 new VueRouter()。

https://www.cnblogs.com/mengyouyouyou/p/10936171.html

以上是关于Vue 打包后报错 Uncaught TypeError: Cannot redefine property: $router的主要内容,如果未能解决你的问题,请参考以下文章

解决vue打包后报“er; // Unhandled 'error' event”错误

vue打包后报错TypeError: Cannot read property ‘call’ of undefined解决方法 - 2021-09-18

记录vue项目打包后报错exports is not defined

pynput打包成exe后报错闪退问题

electron使用electron-forge打包后报错cannot find module ‘XXX’

Vue中的坑Vue打包上传线上报Uncaught SyntaxError: Unexpected token <