Vue3中如何使用this
在v3中,使用setup()来代替了以前data、methods函数等。因为,setup执行是在created之前。所以,没有this。但是又想使用$parent,$refs等方法import { getCurrentInstance, ComponentInternalInstance } from 'vue'setup() { // as ComponetInternalInstance表示类型断言,ts时使用。否则报错,proxy为null const { proxy } =
原创
2021-09-07 16:33:28 ·
11779 阅读 ·
2 评论