在 vue 3 中获取子组件实例对象有两种方法:使用 refs 在父组件中创建引用,在子组件中使用 this.$refs 访问引用。使用 provide/inject 在父组件中提供一个返回子组件实例对象的函数,在子组件中通过注入该函数并调用它获取实例对象。
如何获取 Vue 3 子组件实例对象
Vue 3 中获取子组件实例对象有两种主要方法:
1. 通过 refs
<!-- 父组件 --> <template><mychildcomponent ref="childComponent"></mychildcomponent></template><script> export default { methods: { // 获取子组件实例对象 getChildInstance() { return this.$refs.childComponent; } } } </script><!-- 子组件 --><template><div>我是子组件</div> </template><script> export default { mounted() { console.log(this.$refs); // 输出引用对象 } } </script>
2. 通过 provide/inject
立即学习“前端免费学习笔记(深入)”;
<!-- 父组件 --> <template><mychildcomponent><template v-slot:default="{ instance }">{{ instance }}</template></mychildcomponent></template><script> export default { provide() { return { // 提供方法返回子组件实例对象 getInstance: () => this }; } } </script><!-- 子组件 --><template><div>我是子组件</div> </template><script> export default { inject: ['getInstance'], mounted() { console.log(this.getInstance()); // 输出子组件实例对象 } } </script>