Skip to content

Instantly share code, notes, and snippets.

@javaeeeee
Created February 6, 2017 16:57
Show Gist options
  • Save javaeeeee/493cfcfeda3ee350421187c0ba3d8ebb to your computer and use it in GitHub Desktop.
Save javaeeeee/493cfcfeda3ee350421187c0ba3d8ebb to your computer and use it in GitHub Desktop.
An AngularJS controller using Controller As syntax
(function () {
angular.module('app')
.controller('HelloController', HelloController);
function HelloController() {
var vm = this;
vm.myModel = 'World';
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment