JSFiddle - React, Tailwind, and code Playground
HTML
<body ng-app="myApp" ng-controller="MyCtrl">
<select ng-options="select.Value as select.Name for select in tagSelect" ng-model="tag.MatchLogic"></select>
{{tag.MatchLogic}}
</body>
JavaScript
//Switch between commented/uncommented
angular.module('myApp', [])
.controller("MyCtrl", function($scope) {
$scope.tag.MatchLogic = { Name: 'Must not have', Value: '3' };
$scope.tagSelect = [
{ Name: 'Must havea', Value: '2' },
{ Name: 'Must not have', Value: '3' }];
};
);