gpt4 book ai didi

javascript - 为什么组件不响应自定义事件?

转载 作者:行者123 更新时间:2023-11-28 12:57:52 25 4
gpt4 key购买 nike

我在 Main2.vue 中发出一个名为 emit-event-main2-counter 的事件

为什么Bottom.vue中的数据cntr不会更新?

App.vue

<template>
<div class="app">
<Main2 />
<Bottom/>
</div>
</template>

<script>
import Main2 from "./components/Main2";
import Bottom from "./components/Bottom";

export default {
components: {
Main2,
Bottom
},

}
</script>

<style scoped>
h1 {
color: red;
}
</style>

Main2.vue

<template>
<div>
main2 template <span class="text1">{{message}}</span>
<button type="button" v-on:click="btnClickButton">my click</button>
<div>{{counter}}</div>

</div>
</template>

<script>
import appInput from "./appInput.vue";
export default {
data: () => {
return {
message: "theText",
counter: 0,
}
},
components: {
appInput,
},
methods: {
btnClickButton(e) {
this.$root.$emit('emit-event-main2-counter', this.counter)
console.log('button');
this.counter +=1;
}
}

}
</script>

<style scoped>
.text1 {
color:red;
}
.text2 {
color:blue;
}
</style>

底部.vue

<template>
<div class="Bottom" v-on:emit-event-main2-counter="cntr = $event">
bottom text and cntr ({{cntr}})
</div>
</template>

<script>

export default {
data: () => {
return {
cntr: 0
}
},
}
</script>

<style scoped>

</style>

最佳答案

您可以从 Main2 向父级发出一个事件,并以 this.counter 作为参数,并在父级中接收该事件并将其通过 props 传递> 到底部

Main2中:

this.$emit("emit-event-main2-counter",this.counter);

组件中:

  <template>
<Main2 v-on:emit-event-main2-counter="sendToBottom"/>
<Bottom :cntr="pcounter"/>
....
</template>


data:{
pcounter:0
},
methods:{
sendToBottom(c){
this.pcounter=c
}
}

Bottom 应该具有名为 cntr

的属性
  props:["cntr"]

底部.vue

     <template>
<div class="Bottom" >
bottom text and cntr ({{cntr}})
</div>
</template>

<script>

export default {
props:["cntr"],
data: () => {
return {
}
},
}
</script>

关于javascript - 为什么组件不响应自定义事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53351133/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com