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...
·
解决方案一:
开发阶段 const { ctx } = getCurrentInstance()
生产阶段 const {proxy} = getCurrentInstance()
ctx相当于Vue2的this,我们都知道vue3中不支持this。所以把ctx改成proxy.
解决方案二:as any
const {proxy} = getCurrentInstance() as any
更多推荐
已为社区贡献1条内容
所有评论(0)