我可以在前端使用NextJS的组件作为反应头盔的替代品吗?

时间:2018-02-06 18:21:51

标签: nextjs

所以我打算用NextJS创建一个SSR应用程序。我想知道是否有一种方法可以在前端使用组件,就像使用React-helmet一样。

1 个答案:

答案 0 :(得分:0)

是的,根据Next docs。这是一个示例页面摘录also from the docs

import Head from 'next/head'

export default () => (
  <div>
    <Head>
      <title>This page has a title </title>
      <meta charSet='utf-8' />
      <meta name='viewport' content='initial-scale=1.0, width=device-width' />
    </Head>

    <h1>This page has a title </h1>
  </div>
)