ロード・フロー・リソース
ローカル・リソース(イメージなど)に対処するために、2つの組込み変数が使用されます: $application.pathおよび$flow.path。
各変数を使用して、フローのロケーションを基準としたパスを作成します:
<!-- Display an image located in the resource folder in this application -->
<img alt="photo" :src="[[$application.path + 'resources/images/tools.png']]"/>
<!-- Display an image located in the resource folder in this flow -->
<img alt="photo" :src="[[$flow.path + 'resources/images/tools.png']]"/>