Skip to content

Instantly share code, notes, and snippets.

@wwwmarcos
Created July 17, 2017 04:25
Show Gist options
  • Save wwwmarcos/ff8545c26d8256d34321562325e88283 to your computer and use it in GitHub Desktop.
Save wwwmarcos/ff8545c26d8256d34321562325e88283 to your computer and use it in GitHub Desktop.
(function() {
'use strict'
angular
.module('alabama', [])
.component('alabama', {
template: 'transclude.component.html',
controller: AlabamaComponentController,
transclude: true
})
function AlabamaComponentController() {
var $ctrl = this
}
})()
<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