-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 978 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html ng-app="ejemplo">
<head>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" />
</head>
<body>
<h1>Hello World</h1>
<h2>Carlos</h2>
<div ng-controller="Mi2ctrl as vm">
<!--<h1>{{nombre}}</h1>-->
<!--<button ng-click="imprimir( true )">Activate Function</button>
<input type="text" ng-model="nombre">
-->
<h1>{{vm.nombre}}</h1>
<button ng-click="vm.imprimir( true )">Activate Function</button>
<input type="text" ng-model="vm.nombre">
<h2>{{vm.persona}}</h2>
<h1>{{vm.persona.edad}}</h1>
<div>
<p>Mi lista</p>
<p ng-repeat="num in vm.lista | orderBy: 'valor'">
{{ num.valor | currency }}
</p>
</div>
</div>
<script src="../bower_components/angular/angular.js"></script>
<script src="js/app.js"></script>
</body>
</html>