0
点赞
收藏
分享

微信扫一扫

vue3中的getCurrentInstance

沈芏 2022-03-11 阅读 75

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>
举报

相关推荐

0 条评论