1. 程式人生 > >v-bind="$props" 是什麽意思?

v-bind="$props" 是什麽意思?

一行 rail can 註意 綁定 after rop class mar

猜想是綁定啥東東,在國內一直找不到答案,然後跑到一個帥哥找到答案,其實在官方文檔中也有,也沒有細致註意到

If you need to bind all props to a inner component like this:

<input :placeholder="placeholder" :required="required" :value="value">

You instead can do this:

<input v-bind="$props">

But only if defined in props.

官網解釋,就妹的一行

v-bind="$props" 是什麽意思?