Newer Version Available
aura:application
An app is a special top-level component whose markup is in a .app
resource.
The markup looks similar to HTML and can contain components as well as a set of supported HTML tags. The .app resource is a standalone entry point for the app and enables you to define the overall application layout, style sheets, and global JavaScript includes. It starts with the top-level <aura:application> tag, which contains optional system attributes. These system attributes tell the framework how to configure the app.
aura:application also includes a body attribute defined in a <aura:attribute> tag. Attributes usually control the output or behavior of a component, but not the configuration information in system attributes.
| Attribute | Type | Description |
|---|---|---|
| body | Component[] | The body of the app. In markup, this is everything in the body of the tag. |