前回手順1の続きとして、Lightningコンポーネント属性を共有します。
属性を追加する。
<aura:component implements="force:appHostable">
<aura:attribute name="target" type="String" default="world"/>
<h1>Hello, Lightning Component!!</h1>
<h1>Hello, {!v.target}!</h1>
</aura:component>
説明:
<aura:attribute name="target" type="String" default="world"/>
属性
<h1>Hello, {!v.target}!</h1>
属性と関連されている。
動作確認する。
https://[ yourdomain ]/c/CreateComponentAppliction.app
例えば、
https://testdaeheuitest-test11-dev-ed.lightning.force.com/c/CreateComponentAppliction.app
結果
Hello, Lightning Component!!
Hello, world!