gpt4 book ai didi

javascript - 找不到模块 : Can't resolve '@emotion/react' in 'E:\frontend\node_modules\@mui\styled-engine'

转载 作者:行者123 更新时间:2023-12-05 00:24:00 29 4
gpt4 key购买 nike

我正在尝试从 @mui/material/Box 导入一个盒子组件.我已经使用以下命令安装了 MUI 5 npm i @mui/material .
但是这个错误正在发生,Module not found: Can't resolve '@emotion/react' in 'E:\frontend\node_modules\@mui\styled-engine'这是我的代码。

import * as React from 'react';
import Box from '@mui/material/Box';

export default function WhiteSpace() {
return (
<div style={{ width: 200 }}>
<Box
component="div"
sx={{
whiteSpace: 'nowrap',
my: 2,
bgcolor: 'background.paper',
}}
>
White Space Nowrap. White Space Nowrap.
</Box>
<Box
component="div"
sx={{
whiteSpace: 'normal',
my: 2,
bgcolor: 'background.paper',
}}
>
White Space Normal. White Space Normal.
</Box>
</div>
);
}
有人可以帮我解决这个问题吗?

最佳答案

@emotion/react@emotion/styled是许多 mui 的对等依赖项包,即 @mui/material .这给了我们更多的自由来决定我们想要使用哪个情感版本,但这确实意味着我们必须自己安装依赖项。

npm i @emotion/react @emotion/styled

关于javascript - 找不到模块 : Can't resolve '@emotion/react' in 'E:\frontend\node_modules\@mui\styled-engine' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69269863/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com