当组件中有多个根元素时,如下面的示例所示,我们可以定义应在哪个根元素上应用 Fallthrough 属性。
我们如何定义fallthrough属性应该应用于'Cow'<div>?
<template>
<div>Goat</div>
<div v-bind="@(6)">Cow</div>
<div>Rabbit</div>
</template>
<template>
<div>Goat</div>
<div v-bind="$attrs">Cow</div>
<div>Rabbit</div>
</template>