是否可以在 XGrid 中使用 GridToolbar?沙盒在测试时给出错误消息:“无法读取未定义的属性‘当前’”。
问问题
421 次
1 回答
0
不要从“@material-ui/data-grid”导入 GridToolbar,而是尝试从“@material-ui/x-grid”导入 GridToolbar。
import * as React from "react";
import { GridToolbar, XGrid } from "@material-ui/x-grid";
import { useDemoData } from "@material-ui/x-grid-data-generator";
export default function ToolbarGrid() {
const { data } = useDemoData({
dataSet: "Commodity",
rowLength: 100,
maxColumns: 6
});
return (
<div style={{ height: 400, width: "100%" }}>
<XGrid
{...data}
components={{
Toolbar: GridToolbar
}}
/>
</div>
);
}
于 2021-03-24T16:05:25.863 回答