mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore(Tabs): using slot instead of render props (#10123)
This commit is contained in:
parent
fa5e4e2591
commit
55303595af
@ -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)}
|
||||
|
@ -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>
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user