Created
July 17, 2017 04:25
-
-
Save wwwmarcos/ff8545c26d8256d34321562325e88283 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
'use strict' | |
angular | |
.module('alabama', []) | |
.component('alabama', { | |
template: 'transclude.component.html', | |
controller: AlabamaComponentController, | |
transclude: true | |
}) | |
function AlabamaComponentController() { | |
var $ctrl = this | |
} | |
})() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>ALABAMA</h1> | |
<div ng-transclude> | |
<!-- o conteudo vai ser jogado aqui dentro --> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment