Advertisement
Guest User

Untitled

a guest
Jun 24th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. angular.module('App', [])
  2. .controller('Main', function($scope){
  3.  
  4. $scope.itens = [
  5. { name: 'Primeiro Item', id: 1 },
  6. { name: 'Segundo Item', id: 2 },
  7. { name: 'Terceiro Item', id: 3 }
  8. ];
  9.  
  10. $scope.itens.unshift({name: 'Selecione a Opção', id: 0});
  11.  
  12. $scope.data = $scope.itens[0];
  13.  
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement