Angular ui-select 不起作用。如果我选择第一个选项 0,它会像这样..
<h3>New List 2</h3>
<p>Selected: {{panel.fill}}</p>
<ui-select id="viewSelector" ng-model="panel.fill" theme="selectize">
<ui-select-match placeholder="Select">{{$select.selected}}</ui-select-match>
<ui-select-choices repeat="f in [0,1,2,3,4,5,6,7,8,9,10]">
<div ng-bind-html="f"></div>
</ui-select-choices>
</ui-select>
http://plnkr.co/edit/CKHbiSQ4tZXTjOyxpyBK?p=preview
请指导我。