Created
April 7, 2018 03:26
-
-
Save huytrongnguyen/ca077a28a99531b9b931cc509e209dde 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
| import template from './home.html'; | |
| class HomeController { | |
| constructor() { | |
| this.title = 'Hello from AngularJS'; | |
| } | |
| } | |
| export default { | |
| template, | |
| controller: HomeController, | |
| controllerAs: 'home' | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment