只要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>