欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue 打包后,放到tp5框架中总是报错Uncaught TypeError: Cannot redefine property: $router

程序员文章站 2022-03-01 20:37:21
...

在vue中并没有重复声明路由,也没有重名的路由,最后发现是tp5后端的meta中引入了vue、element ui导致的问题
把下面几句代码注释掉之后,问题就解决了:

  1. <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
  2. <script src="https://unpkg.com/vue/dist/vue.js"></script>
  3. <script src="https://unpkg.com/element-ui/lib/index.js"></script>
  4. <script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>