其他分享
首页 > 其他分享> > vue3中的getCurrentInstance

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>

 

标签:vue,setup,getCurrentInstance,proxy,vue3,组件,defineComponent
来源: https://www.cnblogs.com/Byme/p/15926126.html