fixed Table bug in Vue 2.5.13

This commit is contained in:
梁灏 2017-12-25 10:26:54 +08:00
parent 504f8c525d
commit ceeb9361fd
4 changed files with 52 additions and 890 deletions

View file

@ -30,7 +30,7 @@
<div slot="content" :class="[prefixCls + '-filter-list']" v-if="column._filterMultiple">
<div :class="[prefixCls + '-filter-list-item']">
<checkbox-group v-model="column._filterChecked">
<checkbox v-for="item in column.filters" :key="column._columnKey" :label="item.value">{{ item.label }}</checkbox>
<checkbox v-for="(item, index) in column.filters" :key="index" :label="item.value">{{ item.label }}</checkbox>
</checkbox-group>
</div>
<div :class="[prefixCls + '-filter-footer']">