mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Calendar): title slot not work #7826
This commit is contained in:
parent
26d112ab00
commit
b3b03e20be
@ -16,7 +16,7 @@ export default createComponent({
|
||||
const renderTitle = () => {
|
||||
if (props.showTitle) {
|
||||
const text = props.title || t('title');
|
||||
const title = slots.title ? slots.title : text;
|
||||
const title = slots.title ? slots.title() : text;
|
||||
return <div class={bem('header-title')}>{title}</div>;
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user