当前位置:首页 > IT技术 > 其他 > 正文

Vue3中如何使用this
2022-09-06 22:51:21

vue3提供了getCurrentInstance ,通过这个属性,直接使用ctx是错误的,需要找到全局属性globalProperties

import { getCurrentInstance } from 'vue'
const instance = getCurrentInstance()
const _this= instance.appContext.config.globalProperties

这里的_this就相当于vue2里的this

方案2:

const { proxy } = getCurrentInstance()

使用proxy线上也不会出现问题

本文摘自 :https://www.cnblogs.com/

开通会员,享受整站包年服务立即开通 >