在页面 build 内建的时候为组件流入一些属性信息 import { GetStaticProps } from 'next';export const getStaticProps: GetStaticProps = async (ctx) => { return { props: { name: 'Tom' } };};