SOURCE

console 命令行工具 X clear

                    
>
console
angular.module('myApp', [])
      .controller('MyController', ['$scope', function ($scope) {
        $scope.greetMe = 'World';
      }]);

    angular.element(document).ready(function() {
      angular.bootstrap(document, ['myApp']);
    });
<div ng-controller="MyController">
    Hello {{greetMe}}!
  </div>

本项目引用的自定义外部资源