我对VueJS很新。在反应中,您可以轻松使用休息参数将道具传递给儿童。 Vue中是否有类似的模式?
考虑这个包含几个子组件的父组件:
<template>
<header class="primary-nav">
<search-bar :config="searchBar"><search-bar>
// ^^^^ this becomes the key on the props for SearchBar
header>
</template>
export default {
data(){
return {
... a few components ...
searchBar : {
model: '',
name: 'search-bar',
placeholder: 'Search Away',
required:true,
another: true
andanother: true,
andonemoreanotherone:true,
thiscouldbehundredsofprops:true
}
}
}
}
<template>
<div :class="name">
<form action="/s" method="post">
<input type="checkbox">
<label :for="config.name" class="icon-search">{{config.label}}</label>
<text-input :config="computedTextInputProps"></text-input>
//^^^^ and so on. I don't like this config-dot property structure.
</form>
</div>
</template>
export default {
props: {
name: String,
required: Boolean,
placeholder: String,
model: String,
},
computed: {
computedtextInputProps(){
return justThePropsNeededForTheTextInput
}
}
...
我不喜欢的是道具是用键config
或任意其他任意键命名的。文本输入组件(未示出)是一个美化的input
字段,可以采用许多属性。我可以在创建组件时展平道具,但这通常是个好主意吗?
我很惊讶以前没有问过这个问题。
感谢。
编辑:10-06-2017
答案 0 :(得分:18)
父组件
<template>
<div id="app">
<child-component v-bind="propsToPass"></child-component>
</div>
</template>
<script>
import ChildComponent from './components/child-component/child-component'
export default {
name: 'app',
components: {
ChildComponent
},
data () {
return {
propsToPass: {
name: 'John',
last_name: 'Doe',
age: '29',
}
}
}
}
</script>
子组件
<template>
<div>
<p>I am {{name}} {{last_name}} and i am {{age}} old</p>
<another-child v-bind="$props"></another-child> <!-- another child here and we pass all props -->
</div>
</template>
<script>
import AnotherChild from "../another-child/another-child";
export default {
components: {AnotherChild},
props: ['name', 'last_name', 'age'],
}
</script>
上述组件中的另一个子组件
<template>
<h1>I am saying it again: I am {{name}} {{last_name}} and i am {{age}} old</h1>
</template>
<script>
export default {
props: ['name', 'last_name', 'age']
}
</script>
答案 1 :(得分:1)
答案 2 :(得分:0)
确定。我完全错过了 - 只需使用v-bind="object"
答案 3 :(得分:0)
在vue 3中,除了属性传递, 事件/侦听器也可以传递给子组件。
<template>
<div>
<Button @click="onClick">Click here</Button>
</div>
</template>
<script>
import Button from "./Button.vue";
export default {
methods:{
onClick(evt) {
// handle click event here
}
}
}
</script>
Button.vue
<template>
<button v-bind="$attrs" v-on="$listeners">
<slot />
</button>
</template>
答案 4 :(得分:0)
在子组件中,可以绑定 $attrs 和 $props。
<template>
<button v-bind="[$props,$attrs]" v-on="$listeners">
<slot />
</button>
</template>