vue3 this问题
来源:3-10 老瓶新酒 - 生命周期
慕盖茨7486032
2021-05-28
老师,setup中不能使用this,那我要通过什么方式获取this.$parent呢
写回答
2回答
-
张轩
2021-05-29
必须保证 父组件的 props 是有值的才可以,你这里有可能父组件没有传这个 props,以下两种方式都可以
console.log(instance?.proxy?.$parent?.$props) console.log(instance?.parent?.props)
获得父组件的 props
00 -
张轩
2021-05-29
同学你好 可以通过 getCurrentInstance() 获得,这个内容稍微有点难度。
// 拿到一个vue 提供的内部方法 import { getCurrentInstance } from 'vue' // 在setup 中添加如下代码 setup() { const instance = getCurrentInstance() // 可以通过这个 intance 上面的属性拿到一些原来 this 上面的值 console.log(instance?.proxy?.$parent) }
012021-05-29
相似问题