import { getCurrentInstance } from "vue"
const ctxt = getCurrentInstance()
console.log(ctxt)
本地运行可以获取到路由信息
build打包后
无相关信息 找不到$router
页面报错
app.f95bcc94.js:1 Uncaught TypeError: Cannot read property 'currentRoute' of undefined
有没有大佬遇到了 求解决谢谢!
import { getCurrentInstance } from "vue"
const ctxt = getCurrentInstance()
console.log(ctxt)
本地运行可以获取到路由信息
build打包后
无相关信息 找不到$router
页面报错
app.f95bcc94.js:1 Uncaught TypeError: Cannot read property 'currentRoute' of undefined
有没有大佬遇到了 求解决谢谢!
3 回答4.2k 阅读✓ 已解决
6 回答1.9k 阅读✓ 已解决
3 回答1.6k 阅读✓ 已解决
2 回答1.7k 阅读✓ 已解决
2 回答1.3k 阅读✓ 已解决
3 回答1.2k 阅读✓ 已解决
3 回答1.4k 阅读✓ 已解决
//getCurrentInstance代表全局上下文,ctx相当于Vue2的this, //但是特别注意ctx代替this只适用于开发阶段,等你放到服务器上运行就会出错, //后来查阅资料说的得用proxy替代ctx,才能在你项目正式上线版本正常运行 let {ctx,proxy}=getCurrentInstance();
详细可查看这个链接https://blog.csdn.net/qq_4176...