查看: 101|回覆: 0

[Next.js] Override the Default App Component in Next.js

[複製鏈接]

4

主題

0

回帖

0

積分

热心网友

金币
0
閲讀權限
220
精華
0
威望
0
贡献
0
在線時間
0 小時
註冊時間
2010-12-5
發表於 2022-5-24 17:14:00 | 顯示全部樓層 |閲讀模式

You can override the default App component in Next.js by creating a _app.tsx file and defining your own App component. By doing this, you can use global styles, pass custom props, and more.

pages/_app.tsx

import type {AppProps} from "next/app";

const App = ({Component, pageProps}: AppProps) => {
    // whatever you pass to pageProps object, will be passed to Children component as well
    pageProps.title = "This is override Home page title";
    return <Component {...pageProps} />
}
    
export default App;

 

pages/Home.tsx

const Home ({title}: {title: string}) => {
    return (
        <div>
            <!-- will receive title from _app.js -->
            <h1>{title}</h1>
        </div>
    ) 
}

export default Home;

 



来源:https://www.cnblogs.com/Answer1215/p/16306287.html
回覆

使用道具 舉報

您需要登錄後才可以回帖 登錄 | 立即注册

本版積分規則

相关侵权、举报、投诉及建议等,请发 E-mail:qiongdian@foxmail.com

Powered by Discuz! X5.0 © 2001-2026 Discuz! Team.

在本版发帖返回顶部