Skip to content

Instantly share code, notes, and snippets.

@mindscratch
Created July 28, 2017 19:23
Show Gist options
  • Save mindscratch/16b7f34b3916c2f5e9514a9d8a95105b to your computer and use it in GitHub Desktop.
Save mindscratch/16b7f34b3916c2f5e9514a9d8a95105b to your computer and use it in GitHub Desktop.
angular component binding problem
<script>
angular.module('myapp')
.component("parent", {
bindings: {
childTemplateUrl: '@?'
}
})
.component("child", {
bindings: {
customTemplateUrl: '@?'
}
});
</script>
<child custom-template-url="{{$ctrl.childTemplateUrl}}" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment