我正尝试在Vue组件上使用JSX Spread Attributes,如下所示。
<script>
const
Square = p => <button class="square" v-on:click={ () => p.props.click( p.props.index ) }>{ p.props.squares[ p.props.index ] }</button>
const
Board = p => (
<div>
<Square squares={ p.props.squares } click={ p.props.click } index='0' />
<Square { ...p.props } index='1' />
</div>
)
export default {
data : () => ( { squares: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ] } )
, render ( h ) { return <Board squares={ this.squares } click={ this.handleClick } /> }
, methods : {
handleClick: i => console.log( i )
}
}
</script>
此行可以:
<Square squares={ p.props.squares } click={ p.props.click } index='0' />
但是此行似乎无法将属性从“木板”传递到“平方”
<Square { ...p.props } index='1' />
请帮助我。预先感谢。
答案 0 :(得分:1)
也许你可以这样做
<Square { ...{props: p.props} } index='1' />
阅读https://github.com/vuejs/jsx#attributesprops之后,我认为它可以工作。