import BLOG from '@/blog.config' /** * 标题栏 * @param {*} props * @returns */ export const Title = (props) => { const { siteInfo, post } = props const title = post?.title || siteInfo?.description const description = post?.description || BLOG.AUTHOR return

{title}

{description}

}