Skip to content

Instantly share code, notes, and snippets.

@forcemantis
Created May 23, 2018 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save forcemantis/b4a167c92fb2856016aae36c95d498df to your computer and use it in GitHub Desktop.
Save forcemantis/b4a167c92fb2856016aae36c95d498df to your computer and use it in GitHub Desktop.
<aura:component>
<aura:attribute name="firstName" type="String" access="global"/>
<aura:attribute name="lastName" type="String" access="global"/>
<aura:attribute name="emailAddress" type="String" access="global"/>
<aura:attribute name="companyName" type="String" access="global"/>
<aura:attribute name="referrerURL" type="String" access="global"/>
Embedding Lighting Component in vf page and passing parameters from vf page to Lighting Component<br/>
First Name: {!v.firstName}<br/>
Last Name: {!v.lastName}<br/>
Email Address: {!v.emailAddress}<br/>
Company Name: {!v.companyName}<br/>
Referrer URL: {!v.referrerURL}<br/>
</aura:component>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment