vue3中怎么打印getCurrentInstance
时间: 2023-12-10 11:37:41 浏览: 147
vue中怎么获取当前日期
5星 · 资源好评率100%
在Vue 3中,可以使用`getCurrentInstance()`函数来获取当前组件实例。如果想要打印该实例,可以使用`console.log()`函数来输出。例如:
```javascript
import { getCurrentInstance } from 'vue'
export default {
mounted() {
const instance = getCurrentInstance()
console.log(instance)
}
}
```
在控制台中,你将看到一个包含组件实例信息的对象被输出。你可以查看该对象的属性和方法来了解组件实例的详细信息。
阅读全文