react 函数组件中 使用element-plus
时间: 2024-05-07 18:21:56 浏览: 255
element-plus
要在 React 函数组件中使用 Element Plus,你需要先安装 Element Plus 库。可以使用 npm 或 yarn 安装:
```
npm install element-plus
```
或者
```
yarn add element-plus
```
然后在你的 React 组件中导入需要的 Element Plus 组件。例如:
```jsx
import { Button } from 'element-plus';
import 'element-plus/lib/theme-chalk/index.css';
function MyComponent() {
return (
<div>
<Button type="primary">Click me</Button>
</div>
);
}
```
需要注意的是,Element Plus 是 Vue.js 的 UI 组件库,而不是 React 的,因此在使用 Element Plus 组件时需要手动导入对应的 CSS 样式。
阅读全文