【笔记】MaterialUI学习笔记 发表于 2026-02-13 阅读次数: 前言Material UI is an open-source React component library that implements Google’s Material Design.(官网) 下载依赖1npm install @mui/material @emotion/react @emotion/styled 使用组件按钮123456789import Button from '@mui/material/Button';function Component() { return ( <Button variant="contained"></Button> );}export default Component; 完成