angularjs ui-select怎么用,如何设置默认选中值

表示不清楚ui-select的用法,请问如何设置默认选中值?

{{$select.selected.name}}
                </ui-select-choices> </ui-select>
            </div>
            只要设置了 ng-model并设置它的值 ,就可以出来默认选 中了
<div class="col-sm-6">
                    <ui-select ng-model="provinces.selected" theme="bootstrap"
                        on-select="loadCitys($item, $model)"> <ui-select-match
                        placeholder="选择省份">{{$select.selected.name}}</ui-select-match> <ui-select-choices
                        repeat="province in provinces  | filter: $select.search">
                    <div ng-bind-html="province.name | highlight: $select.search"></div>
                    </ui-select-choices> </ui-select>
                </div> 

只要设置了 ng-model并设置它的值 ,就可以出来默认选 中了