티스토리 뷰
vue3 에서 자식이 부모의 호출하는 방법이야 emit을 사용하면 되지만,부모가 자식 함수를 호출하는 방법은 생각 보다 잘 알려져 있지 않다. 생각 보다 쓸 일이 없기도 하고...
여하튼 찾아본 결과 defineExpose 를 사용하면 된다. 자식 함수의 api를 노출하는 함수 인데, 자식 컴포넌트의 setup내에서 사용 하면 된다.
부모
<template>
<div>
<child-component ref="childRef" />
<button @click="handleClick">Say Hello</button>
</div>
</template>
<script setup>
import {ref} from "vue"
import ChildComponent from './ChildComponent.vue';
const childRef = ref(null)
const handleClick = () => {
childRef.value.childFunc()
}
</script>
자식
<template>
<div>
{{ message }}
</div>
</template>
<script setup>
import { defineExpose } from 'vue';
defineExpose({
childFunc
});
const message = 'Hello, World!';
const childFunc = () => {
console.log('Hello from child component!');
};
</script>
참고
https://shan0325.tistory.com/10
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- next.js glsl
- eslint
- 카드 짝 맞추기 자바스크립트
- Vue.js
- typescript gsls
- react three fiber
- three.js leva
- rollup typescript react
- vue3
- 카카오 카드 짝 맞추기 자바스크립트
- next.js import glsl
- 카카오 카드 짝 맞추기 javascript
- rollup react.js npm
- 카카오 2021 카드 짝 맞추기
- react leva
- react 3d text
- react glsl
- webpack glsl
- vue
- leva
- react 3d animation
- react three fiber leva
- react 3d
- react fiber 3d
- rollup typescript
- ts glsl
- attempted import error: bvh_struct_definitions' is not exported from './gpu/bvhshaderglsl.js' (imported as 'bvhshaderglsl').
- rollup ts react npm
- 카드 짝 맞추기 javascript
- react 3d 에니메이션
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함