新建vue项目使用requier提示Cannot find name 'requier'.

Posted zDefind

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新建vue项目使用requier提示Cannot find name 'requier'.相关的知识,希望对你有一定的参考价值。

npm install @types/node --save-dev

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项目使用requier提示Cannot find name 'requier'.的主要内容,如果未能解决你的问题,请参考以下文章

vue启动服务Cannot GET /问题

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

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

求救:vue脚手架用界面化vue ui创建项目时出现报错Cannot set property 'context' of null怎么解决啊?

转载vue提示Uncaught TypeError: Cannot read property 'push' of undefined

vue2.XX 提示[Vue warn]: Error in render: "TypeError: Cannot read property 'img' of undef