vite创建vue项目 router报错:Uncaught SyntaxError: The requested module '/node_modules/.vite/vue-router

2022-07-13 20:28:05 浏览数 (1)

Uncaught SyntaxError: The requested module '/node_modules/.vite/vue-router.js?v=b45f922f' does not provide an export named 'createRouter' You should uninstall the current vue-router module and reinstall the latest (version 4) one which is compatible with Vue 3 by running :

npm uninstall vue-router

then

npm install vue-router@next -S

https://stackoverflow.com/questions/65858930/does-not-provide-an-export-named-createrouter-vue-3-vite-and-vue-router

0 人点赞