Vue.component('v-dropdown-list', {
render(h) {
const items = this.$slots.default;
return h('div', [
items.slice(0, this.minShow),
h('div', {
ref: 'dropdown',
attrs: {
style: `overflow: hidden; transition: height ${this.duration}ms`
},
}, items.slice(this.minShow)),
]);