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