Load Flow Resources

Two built-in variables are used to address local resources (for example, images): $application.path and $flow.path.

Each variable is used to build a path relative to the location of the flow:

<!-- 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']]"/>