vue-router-next vue3生成的项目 打包后找不到 getCurrentInstance() 获取不到路由信息
import { getCurrentInstance } from "vue"
const ctxt = getCurrentInstance()
console.log(ctxt)
本地运行可以获取到路由信息
build打包后
无相关信息 找不到$router
页面报错
app.f95bcc94.js:1 Uncaught TypeError: Cannot read property 'currentRoute' of undefined
有没有大佬遇到了 求解决谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
//getCurrentInstance代表全局上下文,ctx相当于Vue2的this, //但是特别注意ctx代替this只适用于开发阶段,等你放到服务器上运行就会出错, //后来查阅资料说的得用proxy替代ctx,才能在你项目正式上线版本正常运行 let {ctx,proxy}=getCurrentInstance();
详细可查看这个链接https://blog.csdn.net/qq_4176...
打包问题解决没,我也遇到了打包问题