【Bug修复】修复Medium主题footer中<h1>{title}</h1>显示空白的问题

This commit is contained in:
ipatpat
2023-01-03 23:45:59 +08:00
parent 9dd0d00e1d
commit 500de95754

View File

@@ -20,7 +20,7 @@ import BLOG from '@/blog.config'
* @constructor
*/
const LayoutBase = props => {
const { children, meta, showInfoCard = true, slotRight, slotTop } = props
const { children, meta, showInfoCard = true, slotRight, slotTop, siteInfo } = props
const { locale } = useGlobal()
const router = useRouter()
@@ -61,7 +61,7 @@ const LayoutBase = props => {
</div>
{/* 移动端底部 */}
<Footer />
<Footer title={siteInfo?.title}/>
<BottomMenuBar className='block md:hidden' />
</div>
)