Skip to content

Instantly share code, notes, and snippets.

@msrivastav13
Last active February 28, 2016 23:59
Show Gist options
  • Save msrivastav13/5307e61cce8db4892463 to your computer and use it in GitHub Desktop.
Save msrivastav13/5307e61cce8db4892463 to your computer and use it in GitHub Desktop.
<apex:page showHeader="true" sidebar="true">
<apex:includeLightning />
<div id="lightning"> hello World VF!! </div>
<script>
$Lightning.use("c:sampleApp", function() {
$Lightning.createComponent("c:sampleComponent", {},
"lightning",
function(cmp) {
var myExternalEvent;
myExternalEvent = $A.get("e.c:sampleEvent");
myExternalEvent.fire();
});
});
</script>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment