Online store
Online values
| Property | default | Description |
|---|---|---|
| online | true | Online state |
Online events
| Event name | Argument | Description |
|---|---|---|
| change | boolean | Called when the online state changes |
| mount | Element | Called when the component is mounted |
| clean | null | Called when the component is removed |
Online state
export interface OnlineState {
snapshot: [OnlineState]
online: boolean
callback(): void
change(): void
mount(): void
clean(): void
}