import BLOG from '@/blog.config' const BlogPostMini = ({ post }) => { return ( {/* 封面图 */} {post.page_cover && post.page_cover.length > 1 && ( {post.title} )}
{post.title}

{post.summary}

{BLOG.link}/article/{post.slug}

) } export default BlogPostMini