常用方式:name='',或者v-bind:name='',在子页面可通过props取出指定参数,或者this.$attrs.name方式取出指定参数
子页面接收的参数在未取出的情况下可通过v-bind方式传入下一级页面,例:
<div v-else-if="type==='DB'||type==='Input'">
<DB v-bind="$attrs" v-on="$listeners" />
</div>
$attrs可拿取的参数只能是未在props中指明取出的参数
常用方式:name='',或者v-bind:name='',在子页面可通过props取出指定参数,或者this.$attrs.name方式取出指定参数
子页面接收的参数在未取出的情况下可通过v-bind方式传入下一级页面,例:
<div v-else-if="type==='DB'||type==='Input'">
<DB v-bind="$attrs" v-on="$listeners" />
</div>
$attrs可拿取的参数只能是未在props中指明取出的参数
评论区