Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
Component Attributes
Use the <aura:attribute> tag to add an attribute to the component or app. Let’s look at the following sample, helloAttributes.app:
1<aura:application>
2 <aura:attribute name="whom" type="String" default="world"/>
3 Hello {!v.whom}!
4</aura:application>All attributes have a name and a type. Attributes may be marked as required by specifying required="true", and may also specify a default value.
In this case we've got an attribute named whom of type String. If no value is specified, it defaults to "world".
Though not a strict requirement, <aura:attribute> tags are usually the first things listed in a component’s markup, as it provides an easy way to read the component's shape at a glance.
Attribute Naming Rules
An attribute name must follow these naming rules:
- Must begin with a letter or an underscore
- Must contain only alphanumeric or underscore characters
Expressions
helloAttributes.app contains an expression, {!v.whom}, which is responsible for the component's dynamic output.