programing

이것과의 차이점.$parent.$170이랑 이거요.$140

kingscode 2022. 8. 11. 18:32
반응형

이것과의 차이점.$parent.$170이랑 이거요.$140

VueTable2에서 이벤트를 발신하기 위해 커스텀컴포넌트가 필요한 경우 다음 명령을 사용해야 합니다.

this.$parent.$emit('myCustomEvent')

// instead of
this.$emit('myCustomEvent')

스레드는 이 측면에 대해 더 많이 알려줍니다.

나는 달리기를 하곤 했다.this.$emit()내가 이벤트를 촉발시켰을 때 말이야그 둘의 주된 차이점은 무엇입니까?

this.$emit는 이벤트를 부모 컴포넌트로 디스패치합니다.

this.$parent는 부모 컴포넌트에 대한 참조를 제공합니다.

짐작하셨겠지만this.$parent.$emit는, 이벤트를 부모에게 디스패치 합니다.

언급URL : https://stackoverflow.com/questions/45144483/difference-between-this-parent-emit-and-this-emit

반응형