vue-router-next vue3生成的项目 打包后找不到 getCurrentInstance() 获取不到路由信息

import { getCurrentInstance } from "vue"
const ctxt = getCurrentInstance()
console.log(ctxt)
image
本地运行可以获取到路由信息

build打包后
image
无相关信息 找不到$router
页面报错
app.f95bcc94.js:1 Uncaught TypeError: Cannot read property 'currentRoute' of undefined
image

有没有大佬遇到了 求解决谢谢!

阅读 8.7k
2 个回答

//getCurrentInstance代表全局上下文,ctx相当于Vue2的this, //但是特别注意ctx代替this只适用于开发阶段,等你放到服务器上运行就会出错, //后来查阅资料说的得用proxy替代ctx,才能在你项目正式上线版本正常运行 let {ctx,proxy}=getCurrentInstance();
详细可查看这个链接https://blog.csdn.net/qq_4176...

新手上路,请多包涵

打包问题解决没,我也遇到了打包问题

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏