# @excalidraw/excalidraw
这是 react 的库,不是 VUE 的库
下载量 82,496
星标 80K
一个 React 写的绘图编辑器
https://github.com/excalidraw/excalidraw (opens new window)
https://www.npmjs.com/package/@excalidraw/excalidraw (opens new window)
Excalidraw is exported as a component to directly embed in your projects.
npm install react react-dom @excalidraw/excalidraw
1
https://docs.excalidraw.com/docs/@excalidraw/excalidraw/integration (opens new window)
https://docs.excalidraw.com/docs/@excalidraw/excalidraw/api (opens new window)
import { Excalidraw } from "@excalidraw/excalidraw";
function App() {
return (
<>
<h1 style={{ textAlign: "center" }}>Excalidraw Example</h1>
<div style={{ height: "500px" }}>
<Excalidraw />
</div>
</>
);
}
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12