docs($compile): change component example to use controllerAs

Closes #14010
This commit is contained in:
Wesley Cho
2016-02-11 09:59:54 -08:00
committed by Martin Staffa
parent e4e30961ca
commit b8b5b885f7
+2 -1
View File
@@ -1062,7 +1062,8 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
*
* myMod.component('myComp', {
* templateUrl: 'views/my-comp.html',
* controller: 'MyCtrl as ctrl',
* controller: 'MyCtrl',
* controllerAs: 'ctrl',
* bindings: {name: '@'}
* });
*