vue3提供了getCurrentInstance ,通过这个属性,直接使用ctx是错误的,需要找到全局属性globalProperties
vue3
getCurrentInstance
ctx
globalProperties
import { getCurrentInstance } from 'vue' const instance = getCurrentInstance() const _this= instance.appContext.config.globalProperties
这里的_this就相当于vue2里的this
_this
vue2
this