[Vue] 7. Vue素子開発プレミアム編-7)同期親素子中性子素子のデータ値
親構成部品からの子構成部品のデータ値の同期
前にサブアセンブリから親アセンブリへのCustomイベントがあり、データが渡されます.しかし、実務では、非常に不便な仕事です.したがって、サブコンポーネントで定義されたデータが値を変更する理由にかかわらず、親コンポーネントで常に監視されます.これにより、サブコンポーネントで親コンポーネントとしてカスタムイベントが発生しながらデータを渡す必要がなくなります.// DataBindingExample.vue
<template>
<div>
<button type="button" @click="showData">부모 버튼</button>
<ChildComponent ref="child_component" />
<h1>{{ parentMsg }}</h1>
</div>
</template>
<script>
import ChildComponent from "./ChildComponent.vue";
export default {
components: { ChildComponent },
data() {
return {
parentMsg: "",
};
},
computed: {
msg() {
return this.$refs.child_component.msg;
},
},
setup() {},
created() {},
mounted() {},
unmounted() {},
methods: {
showData() {
//alert(this.msg);
this.parentMsg = this.msg;
},
},
};
</script>
<style scoped></style>
// ChildComponent.vue
<template>
<div>
<button type="button" @click="changeData">자식 컴포넌트 데이터 변경</button>
</div>
</template>
<script>
export default {
components: {},
data() {
return {
msg: "자식 컴포넌트로부터 보내는 메시지",
};
},
setup() {},
created() {},
mounted() {},
unmounted() {},
methods: {
changeData() {
this.msg = "자식 컴포넌트에서 데이터 변경이 일어났습니다.";
},
},
};
</script>
<style scoped></style>
Reference
この問題について([Vue] 7. Vue素子開発プレミアム編-7)同期親素子中性子素子のデータ値), 我々は、より多くの情報をここで見つけました
https://velog.io/@manyyeon/Vue.js-7.-Vue-컴포넌트-개발고급편-7-부모-컴포넌트에서-자식-컴포넌트의-데이터-값-동기화하기
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
// DataBindingExample.vue
<template>
<div>
<button type="button" @click="showData">부모 버튼</button>
<ChildComponent ref="child_component" />
<h1>{{ parentMsg }}</h1>
</div>
</template>
<script>
import ChildComponent from "./ChildComponent.vue";
export default {
components: { ChildComponent },
data() {
return {
parentMsg: "",
};
},
computed: {
msg() {
return this.$refs.child_component.msg;
},
},
setup() {},
created() {},
mounted() {},
unmounted() {},
methods: {
showData() {
//alert(this.msg);
this.parentMsg = this.msg;
},
},
};
</script>
<style scoped></style>
// ChildComponent.vue
<template>
<div>
<button type="button" @click="changeData">자식 컴포넌트 데이터 변경</button>
</div>
</template>
<script>
export default {
components: {},
data() {
return {
msg: "자식 컴포넌트로부터 보내는 메시지",
};
},
setup() {},
created() {},
mounted() {},
unmounted() {},
methods: {
changeData() {
this.msg = "자식 컴포넌트에서 데이터 변경이 일어났습니다.";
},
},
};
</script>
<style scoped></style>
Reference
この問題について([Vue] 7. Vue素子開発プレミアム編-7)同期親素子中性子素子のデータ値), 我々は、より多くの情報をここで見つけました https://velog.io/@manyyeon/Vue.js-7.-Vue-컴포넌트-개발고급편-7-부모-컴포넌트에서-자식-컴포넌트의-데이터-값-동기화하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol