Opções pré -selecionadas Select2 AngularJS
<select ui-select2 ng-model="testModel" multiple style="width:200px">
<option value="{{item.id}}" ng-repeat="item in items">{{item.text}}</option>
</select>
$scope.testModel = [3];
Harendra