fix(Calendar): title slot not work #7826

This commit is contained in:
chenjiahan 2020-12-28 19:39:11 +08:00
parent 26d112ab00
commit b3b03e20be

View File

@ -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>;
}
};