Commit c35c53d830894bfd25ab2deeaa4403e973d289df

Authored by 梁灏
1 parent 73dc2ded

fixed #182

fixed #182
src/components/select/select.vue
... ... @@ -555,6 +555,7 @@
555 555 });
556 556 this.notFound = is_hidden;
557 557 });
  558 + this.$broadcast('on-update-popper');
558 559 }
559 560 },
560 561 events: {
... ...
test/routers/select.vue
1 1 <template>
2   - <Row>
  2 + <Row style="width: 400px">
3 3 <i-col span="12" style="padding-right:10px">
4 4 <i-select :model.sync="model11" filterable>
5 5 <i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
... ...