logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue3项目中开发阶段ctx代替this,生产阶段const { ctx } = getCurrentInstance()如何获取路由挂载问题

解决方案一:开发阶段 const { ctx } = getCurrentInstance()生产阶段 const {proxy} = getCurrentInstance()ctx相当于Vue2的this,我们都知道vue3中不支持this。所以把ctx改成proxy.解决方案二:as anyconst {proxy} = getCurrentInstance() as any...

文章图片
#javascript#开发语言#ecmascript
到底了