修复插槽多级传递问题 (#65)

* fix: fix slot multi-level transmission problem
This commit is contained in:
wendell0316
2020-10-29 00:15:39 +08:00
committed by GitHub
parent 34c09fcea8
commit abde5c3aa1

View File

@@ -1,6 +1,10 @@
<template>
<div class="collapse-container p-2">
<CollapseHeader v-bind="$props" :show="show" @expand="handleExpand" />
<CollapseHeader v-bind="$props" :show="show" @expand="handleExpand">
<template #title>
<slot name="title" />
</template>
</CollapseHeader>
<CollapseTransition :enable="canExpan">
<Skeleton v-if="loading" />
<div class="collapse-container__body" v-else v-show="show">