vue3子组件取到父组件实例
时间: 2023-11-15 15:58:15 浏览: 210
vue之父子组件间通信实例讲解(props、$ref、$emit)
在Vue3中,可以通过`getCurrentInstance()`方法获取当前组件在Vue3中,可以通过`getCurrentInstance()`方法获取当前组件实例,然后通过`$parent`属性获取父组件实例。在子组件中,可以使用以下代码获取父组件实例:
```
const parent = getCurrentInstance().$parent;
```
需要注意的是,如果父组件实例不存在,则`$parent`属性为`null`。
阅读全文