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/