Vue Select默认选择项设置方法

只要SSCityList有改变就会自动选择第一项

<select id="SSType" name="SSType" class="form-control"  isvalid="yes" checkexpression="NotNull">
   <option value="0">请选择</option>
   <option v-for="(item,index) in SSCityList" :key="index" :value="item.CityId" :selected="index==0">{{item.Name}}</option>
</select>   

 

posted @ 2020-04-21 21:18  James·wang  阅读(2442)  评论(0编辑  收藏  举报