Closed5
Miro SDK
Miroを使い始めたのでSDKについて調査する
Use the browser developer tools with the Miro Web SDK
- 個人アカウントを新規作成
- ボードを開き、ブラウザの開発者ツールを起動
- コンソールから
miro.board
const shape = await miro.board.createShape({
content: '<p>This is a very yellow star shape.</p>',
shape: 'star',
style: {
fillColor: '#FEFF45',
},
x: 3000,
y: 4500,
width: 280,
height: 280,
});
console.log(shape);
await miro.board.viewport.zoomTo(shape);
すご。簡単。
このスクラップは2022/10/06にクローズされました