属性继承
<xxx-xxx v-bind="$attrs">
</xxx-xxx>
方法继承
<xxx-xxx v-on="$listeners">
</xxx-xxx>
插槽继承
<xxx-xxx>
<template v-for="(index, name) in $slots" :slot="name">
<slot :name="name" />
</template>
</xxx-xxx>
以上适用于Vue2.x版本,在Vue3中并不完全适用,比如$listeners在Vue3中被移除了,需要注意;