运行出现Uncaught ReferenceError: Antd is not defined
时间: 2023-11-20 09:50:37 浏览: 110
easyui解决:Uncaught ReferenceError: jQuery is not defined
5星 · 资源好评率100%
这个错误提示表明你的代码中使用了 Antd 组件库,但是没有正确引入 Antd 库。你需要在代码中添加以下语句来引入 Antd 库:
```javascript
import { Button } from 'antd';
```
这里以 Button 组件为例,你需要根据你的实际使用情况来引入相应的组件。
阅读全文