JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app="app" ng-controller="ctrl">
    <select ng-model="model" ng-options="o as o for o in items | limitTo: 10"></select>
</div>

JavaScript

angular.module('app', [])
.controller('ctrl', function($scope) {
    $scope.items = [1,2,3,4,5,6,7,8,9,'a','b','c','d','e','f','g','h','i','j'];
})