ラベル
Last update: Mon Jul 15 2024 00:00:00 GMT+0000 (Coordinated Universal Time)
作成対象:
- ユーザー
- 管理者
任意のテキストまたは文字列を表示するには、コンポーネント label を使用します。
JUI のラベルコンポーネントは HTML <label/>
を表します。
以下は、静的ラベルを追加する例です
const staticLabelJSON = {
"component": "label", //tells the component name
"label": "This is an example label", // the string to be displayed
}
以下の JSON は、動的文字列を表示します。
const labelJSON = {
"component": "label", //tells the component name
"label": "@name", // the variable storing the text to be displayed
},
レンダリングされたラベルは次のようになります。
recommendation-more-help
11125c99-e1a1-4369-b5d7-fb3098b9b178