chore(Tabs): using slot instead of render props (#10123)

This commit is contained in:
neverland 2021-12-30 14:31:14 +08:00 committed by GitHub
parent fa5e4e2591
commit 55303595af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View File

@ -361,6 +361,7 @@ export default defineComponent({
const renderNav = () =>
children.map((item, index) => (
<TabsTitle
v-slots={{ title: item.$slots.title }}
id={`${id}-${index}`}
ref={setTitleRefs(index)}
type={props.type}
@ -370,7 +371,6 @@ export default defineComponent({
isActive={index === state.currentIndex}
controls={item.id}
scrollable={scrollable.value}
renderTitle={item.$slots.title}
activeColor={props.titleActiveColor}
inactiveColor={props.titleInactiveColor}
onClick={(event: MouseEvent) => onClickTab(item, index, event)}

View File

@ -19,12 +19,11 @@ export default defineComponent({
controls: String,
scrollable: Boolean,
activeColor: String,
renderTitle: Function,
inactiveColor: String,
showZeroBadge: truthProp,
},
setup(props) {
setup(props, { slots }) {
const style = computed(() => {
const style: CSSProperties = {};
const { type, color, disabled, isActive, activeColor, inactiveColor } =
@ -56,7 +55,7 @@ export default defineComponent({
const renderText = () => {
const Text = (
<span class={bem('text', { ellipsis: !props.scrollable })}>
{props.renderTitle ? props.renderTitle() : props.title}
{slots.title ? slots.title() : props.title}
</span>
);