文章目录
- 一、 外象
 
- 1. 背景
 - 2. 现象
 
- 二、 解决方案
 
- 2.1. npm
 - 2.2. yarn
 
一、 外象
1. 背景
vue3与vite整合使用时
2. 现象
浏览器控制台
SyntaxError: The requested module
 ‘/node_modules/.vite/vue-router/dist/vue-router.esm.js?v=4830dca4’
 does not provide an export named ‘createRouter’
二、 解决方案
使用方式根据自己的方式执行选择
2.1. npm
npm uninstall vue-router
npm install
2.2. yarn
yarn remove vue-router
yarn add
                










