mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 07:39:10 +08:00
9494f39c68
* site: update nextjs docs * fix * add
1.7 KiB
1.7 KiB
order | title |
---|---|
4 | 在 Next.js 中使用 |
Next.js 是目前世界上最流行的 React 服务端同构框架,本文会尝试在 Next.js 创建的工程中使用 antd
组件。
安装和初始化
工具会自动初始化一个脚手架并安装项目的各种必要依赖,在安装过程中,有一些配置项需要自行选择,如果在过程中出现网络问题,请尝试配置代理,或使用其他 npm registry。
初始化完成后,我们进入项目并启动。
$ cd antd-demo
$ npm run dev
此时使用浏览器访问 http://localhost:3000/ ,看到 NEXT 的 logo 就算成功了。
引入 antd
现在从 yarn 或 npm 或 pnpm 安装并引入 antd。
修改 src/app/page.tsx
,引入 antd 的按钮组件。
'use client';
import React from 'react';
import { Button } from 'antd';
const Home = () => (
<div className="App">
<Button type="primary">Button</Button>
</div>
);
export default Home;
好了,现在你应该能看到页面上已经有了 antd
的蓝色按钮组件,接下来就可以继续选用其他组件开发应用了。其他开发流程你可以参考 Next.js 的官方文档。
我们现在已经把 antd 组件成功运行起来了,开始开发你的应用吧!