Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i18n(ko-KR): update dev-toolbar-app-reference.mdx #7875

Merged
merged 2 commits into from
Apr 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/content/docs/ko/reference/dev-toolbar-app-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,21 @@ export default {
}
```

### `placement-updated`

이 이벤트는 사용자가 Dev Toolbar의 배치를 변경할 때 시작됩니다.

```ts title="src/my-app.js" {4-6}
export default {
// ...
init(canvas, eventTarget) {
eventTarget.addEventListener('placement-updated', (event) => {
console.log(`Placement set to ${event.detail.placement}`);
})
}
}
```

#### `state: boolean`

사용자가 클릭한 후 앱이 활성화되는지 여부를 나타냅니다.
Expand Down
Loading