[Vue] 7. Vue素子の開発上級編-3)親素子にサブ素子イベントを励起させる
親構成部品で子構成部品を励起するイベント // DataBindingExample.vue
<template>
<div>
<button type="button" @click="callChildFunc">부모에 있는 클릭</button>
<ChildComponent ref="child_component" />
</div>
</template>
<script>
import ChildComponent from "./ChildComponent.vue";
export default {
components: { ChildComponent },
data() {
return {};
},
setup() {},
created() {},
mounted() {},
unmounted() {},
methods: {
callChildFunc() {
this.$refs.child_component.$refs.child_btn.click();
},
},
};
</script>
<style scoped></style>
//ChildComponent.vue
<template>
<div>
<button type="button" @click="childFunc" ref="child_btn">
자식에 있는 클릭
</button>
</div>
</template>
<script>
export default {
components: {},
data() {
return {};
},
setup() {},
created() {},
mounted() {},
unmounted() {},
methods: {
childFunc() {
alert("부모 컴포넌트에서 직접 발생시킨 이벤트");
},
},
};
</script>
<style scoped></style>
Reference
この問題について([Vue] 7. Vue素子の開発上級編-3)親素子にサブ素子イベントを励起させる), 我々は、より多くの情報をここで見つけました
https://velog.io/@manyyeon/Vue.js-7.-Vue-컴포넌트-개발고급편-3-부모-컴포넌트에서-자식-컴포넌트의-이벤트-발생시키기
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
// DataBindingExample.vue
<template>
<div>
<button type="button" @click="callChildFunc">부모에 있는 클릭</button>
<ChildComponent ref="child_component" />
</div>
</template>
<script>
import ChildComponent from "./ChildComponent.vue";
export default {
components: { ChildComponent },
data() {
return {};
},
setup() {},
created() {},
mounted() {},
unmounted() {},
methods: {
callChildFunc() {
this.$refs.child_component.$refs.child_btn.click();
},
},
};
</script>
<style scoped></style>
//ChildComponent.vue
<template>
<div>
<button type="button" @click="childFunc" ref="child_btn">
자식에 있는 클릭
</button>
</div>
</template>
<script>
export default {
components: {},
data() {
return {};
},
setup() {},
created() {},
mounted() {},
unmounted() {},
methods: {
childFunc() {
alert("부모 컴포넌트에서 직접 발생시킨 이벤트");
},
},
};
</script>
<style scoped></style>
Reference
この問題について([Vue] 7. Vue素子の開発上級編-3)親素子にサブ素子イベントを励起させる), 我々は、より多くの情報をここで見つけました https://velog.io/@manyyeon/Vue.js-7.-Vue-컴포넌트-개발고급편-3-부모-컴포넌트에서-자식-컴포넌트의-이벤트-발생시키기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol