Skip to content

Instantly share code, notes, and snippets.

@truongsinh
Created June 24, 2015 05:36
Show Gist options
  • Save truongsinh/667e8a8572e0ea505c0a to your computer and use it in GitHub Desktop.
Save truongsinh/667e8a8572e0ea505c0a to your computer and use it in GitHub Desktop.
./path/my-component-name.ts
// ./path/my-component-name.ts
import tpl from './my-component-name.html';
angular
.module("myComponentName")
.directive("myComponentName", function() {
return
{
restrict: 'E',
template: tpl,
controller: myComponentNameCtrl,
controllerAs: "vm",
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment