> - This component is supported since API version 8. Updates will be marked with a superscript to indicate their earliest API version.
>
> - The APIs of this module are system APIs and cannot be called by third-party applications.
...
...
@@ -40,7 +40,7 @@ Creates a **PluginComponent** to display the UI provided by an external applicat
## Events
| Name | Description |
| Name | Description |
| -------- | -------- |
| onComplete(callback: () => void) | Triggered when the component loading is complete. |
| onError(callback: (info: { errcode: number, msg: string }) => void) | Triggered when an error occurs during component loading.<br/>**errcode**: error code.<br/>**msg**: error information. |
...
...
@@ -85,7 +85,7 @@ Used by the component provider to send the component and data to the component c
| data | KVObject | No | Component data value. |
| extraData | KVObject | No | Additional data value. |
- Example
- Example<br>
For details, see [APIs Called by Component Consumers](#apis-called-by-component-consumers).
...
...
@@ -121,7 +121,7 @@ Used by the component consumer to request the component from the component provi
| key | number \| string \| boolean \| Array \| KVObject | **KVObject** uses **key** and **value** to store data. **key** is of the string type, and **value** can be of the number, string, boolean, array type or another **KVObject**. |
- Example
- Example<br>
For details, see [APIs Called by Component Consumers](#apis-called-by-component-consumers).
...
...
@@ -150,7 +150,7 @@ Listens for events of the request type and returns the requested data, or listen
| data | KVObject | Component data. |
| extraData | KVObject | Additional data. |
- Example
- Example<br>
For details, see [APIs Called by Component Consumers](#apis-called-by-component-consumers).
| value | string | Yes| - | Value of the current radio button.|
| group | string | Yes| - | Name of the group to which the radio button belongs. Only one radio button in a given group can be selected at a time.|
| value | string | Yes | - | Value of the current radio button. |
| group | string | Yes | - | Name of the group to which the radio button belongs. Only one radio button in a given group can be selected at a time. |
## Attributes
| Name| Type| Default Value| Description|
| Name | Type | Default Value | Description |
| -------- | -------- | -------- | -------- |
| checked | boolean | false | Whether the radio button is selected.|
| checked | boolean | false | Whether the radio button is selected.|
## Events
| Name| Description|
| Name | Description |
| -------- | -------- |
| onChange(callback: (value: boolean) => void) | Triggered when the selected state of the radio button changes.<br> -The value **true** means that the radio button is selected.<br> -The value **false** means that the radio button is not selected.|
| onChange(callback: (value: boolean) => void) | Triggered when the selected state of the radio button changes.<br> -The value **true** means that the radio button is selected.<br> -The value **false** means that the radio button is not selected.|