在官方网站上,有一种方法可以将模块导入到项目中
import { Link } from 'react-router-dom'
import Button from '@material-ui/core/Button';
<Button component={Link} to="/open-collective">
Link
</Button>
但是是否仍然可以通过浏览器全局(窗口对象)来调用对象?
答案 0 :(得分:1)
您可以使用CDN版本,并将其包含在index.html
中,然后就可以访问它。
<script src="https://unpkg.com/@material-ui/core/umd/material-ui.production.min.js" crossorigin="anonymous"></script>
和字体文件。
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500">
下面是一个示例https://github.com/mui-org/material-ui/tree/master/examples/cdn
应根据他们的documentation
加以注意您可以开始使用具有最低前端基础结构的Material-UI, 这非常适合制作原型。我们不鼓励在 虽然可以制作-客户必须下载整个库, 无论实际使用哪个组件,都会影响 性能和带宽利用率。