JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app ng-controller="MyCtrl">
    
     <select ng-model="Team" ng-options="a.text as a.text  for a in opts" required="">
    
    
    <p>{{opt}}</p>
</div>

JavaScript

function MyCtrl($scope) {
    $scope.opts = [
        {value: 111, text: '1st' },
        {value: 222, text: '2nd' }
    ];
    $scope.Team='1st'
    
}