iview/src/components/select/option-group.vue

52 lines
1.4 KiB
Vue
Raw Normal View History

2019-08-27 09:42:40 +08:00
<template>
<li :class="[prefixCls + '-wrap']" v-show="!hidden">
<div :class="[prefixCls + '-title']">{{ label }}</div>
<ul>
<li :class="[prefixCls]" ref="options"><slot></slot></li>
</ul>
</li>
</template>
<script>
const prefixCls = 'ivu-select-group';
export default {
name: 'OptionGroup',
props: {
label: {
type: String,
default: ''
}
},
data () {
return {
prefixCls: prefixCls,
hidden: false // for search
};
},
methods: {
queryChange () {
this.$nextTick(() => {
const options = this.$refs.options.querySelectorAll('.ivu-select-item');
let hasVisibleOption = false;
for (let i = 0; i < options.length; i++) {
if (options[i].style.display !== 'none') {
hasVisibleOption = true;
break;
}
}
this.hidden = !hasVisibleOption;
});
}
},
mounted () {
this.$on('on-query-change', () => {
this.queryChange();
return true;
});
},
beforeDestroy() {
this.$off('on-query-change');
2019-08-27 09:42:40 +08:00
}
};
</script>