vue3中的getCurrentInstance

setup的执行时组件对象还没有创建,此时不能使用this来访问data/computed/methods/props
我们可以通过 getCurrentInstance这个函数来返回当前组件的实例对象,也就是当前vue这个实例对象

<template>
  <div>
  </div>
</template>
<script lang="ts">
import {defineComponent, getCurrentInstance} from 'vue';
export default defineComponent({
  setup () {
    const {proxy} = getCurrentInstance()
    console.log(proxy)
  } 
})
</script>
<style scoped>
</style>

 

上一篇:【网络基础】GPRS 中的PDP上下文名词解释


下一篇:Vue3 通过 props 传值被消除响应性