如何在递归子组件vuejs中发出事件
从vue site https://vuejs.org/v2/examples/tree-view.html
获取树示例如何通过点击向父母点击每个点击的元素ID?
答案 0 :(得分:7)
如果您不想创建多个Vue实例,这是另一种解决方案。我在单文件递归组件中使用它。
它使用v-on
指令(我使用@
简写)。
在递归组件<template>
中:
<YourComponent @bus="bus"></YourComponent>
在递归组件methods
中:
methods: {
bus: function (data) {
this.$emit('bus', data)
}
}
要开始它,你会在孩子身上发出一个事件:
this.$emit('bus', {data1: 'somedata', data2: 'somedata'})
该数据将一直传输到链中,然后您在调用递归组件的页面中收到该事件:
methods: {
bus (data) {
// do something with the data
}
}
这是一个小提琴,显示它在Vue.JS树例子中的作用。右键单击一个元素,它将在控制台中输出该模型:
答案 1 :(得分:1)
对于递归元素,您可以在父级中创建event bus,将其作为道具传递给子级,并让每个道具将其传递给他们生成的任何子级。
每个孩子在总线上发出事件,父母处理它们。我复制了您链接的树视图练习并添加了总线功能。
// demo data
var data = {
name: 'My Tree',
children: [{
name: 'hello'
},
{
name: 'wat'
},
{
name: 'child folder',
children: [{
name: 'child folder',
children: [{
name: 'hello'
},
{
name: 'wat'
}
]
},
{
name: 'hello'
},
{
name: 'wat'
},
{
name: 'child folder',
children: [{
name: 'hello'
},
{
name: 'wat'
}
]
}
]
}
]
};
var itemId = 0;
// define the item component
Vue.component('item', {
template: '#item-template',
props: {
model: Object,
bus: Object
},
data: function() {
return {
open: false,
id: ++itemId
}
},
computed: {
isFolder: function() {
return this.model.children &&
this.model.children.length
}
},
methods: {
toggle: function() {
if (this.isFolder) {
this.open = !this.open;
this.bus.$emit('toggled', this.id);
}
},
changeType: function() {
if (!this.isFolder) {
Vue.set(this.model, 'children', [])
this.addChild()
this.open = true
}
},
addChild: function() {
this.model.children.push({
name: 'new stuff'
})
}
}
})
// boot up the demo
var demo = new Vue({
el: '#demo',
data: {
treeData: data,
bus: new Vue()
},
created() {
this.bus.$on('toggled', (who) => {
console.log("Toggled", who);
});
}
})
&#13;
body {
font-family: Menlo, Consolas, monospace;
color: #444;
}
.item {
cursor: pointer;
}
.bold {
font-weight: bold;
}
ul {
padding-left: 1em;
line-height: 1.5em;
list-style-type: dot;
}
&#13;
<script src="//cdnjs.cloudflare.com/ajax/libs/vue/2.4.2/vue.min.js"></script>
<!-- item template -->
<script type="text/x-template" id="item-template">
<li>
<div :class="{bold: isFolder}" @click="toggle" @dblclick="changeType">
{{model.name}}
<span v-if="isFolder">[{{open ? '-' : '+'}}]</span>
</div>
<ul v-show="open" v-if="isFolder">
<item class="item" :bus="bus" v-for="model in model.children" :model="model">
</item>
<li class="add" @click="addChild">+</li>
</ul>
</li>
</script>
<p>(You can double click on an item to turn it into a folder.)</p>
<!-- the demo root element -->
<ul id="demo">
<item class="item" :bus="bus" :model="treeData">
</item>
</ul>
&#13;
答案 2 :(得分:1)
Use v-on="$listeners"
我会让你保密。 Vue $listeners
属性(据记录在那里可以将事件传递给孩子),也可以将孩子事件传递给父母!
https://vuejs.org/v2/guide/components-custom-events.html#Binding-Native-Events-to-Components
这是一个伪代码示例(用于说明目的的简称):
<ancestor-component @messageForAncestor="displayMessage">
...
<parent-component v-on="$listeners">
...
<child-component @click="$emit('messageForAncestor')">
在子组件上方的显示中,将传递一个事件。父级通常可以侦听messageForAncestor
事件,但该事件需要停止。将v-on="$listeners"
放在父母身上实际上是请继续传递它。
警告:这可能是个坏主意
这可能是一个非常糟糕的主意。更好的主意是简单地要求中间组件(父组件)将其传递给...
<!-- better idea (listen for message and pass on message) -->
<parent-component @message="$emit('message', $event)">