找不到模块:无法解析“@material/core/Grid”
Module not found: Can't resolve '@material/core/Grid'
我克隆了一个使用 MUI 的存储库,并且在我克隆时已经导入了以下组件(它们可以工作)
import Card from '@mui/material/Card'
import CardActions from '@mui/material/CardActions'
import CardContent from '@mui/material/CardContent'
import CardMedia from '@mui/material/CardMedia'
import Typography from '@mui/material/Typography'
然后我尝试 import Grid from '@material/core/Grid'
但得到了错误 Module not found: Can't resolve '@material/core/Grid'
即使我 运行 在存储库文件夹和“/下载”中执行了以下命令:
npm install @material-ui/core
npm install
npm install @material-ui/core/Grid
如果需要我可以提供更多信息
你看到所有的工作组件是怎样的了吗@mui/material/SOMETHING
?
另见 the documentation for Grid。
是import Grid from '@mui/material/Grid';
不是from '@material/core/Grid'
。
我克隆了一个使用 MUI 的存储库,并且在我克隆时已经导入了以下组件(它们可以工作)
import Card from '@mui/material/Card'
import CardActions from '@mui/material/CardActions'
import CardContent from '@mui/material/CardContent'
import CardMedia from '@mui/material/CardMedia'
import Typography from '@mui/material/Typography'
然后我尝试 import Grid from '@material/core/Grid'
但得到了错误 Module not found: Can't resolve '@material/core/Grid'
即使我 运行 在存储库文件夹和“/下载”中执行了以下命令:
npm install @material-ui/core
npm install
npm install @material-ui/core/Grid
如果需要我可以提供更多信息
你看到所有的工作组件是怎样的了吗@mui/material/SOMETHING
?
另见 the documentation for Grid。
是import Grid from '@mui/material/Grid';
不是from '@material/core/Grid'
。