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>