36 lines
482 B
Vue
36 lines
482 B
Vue
<template>
|
|
<div class="dropdown-menu">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
mounted() {
|
|
this.$on('close', this.closeDropdown)
|
|
},
|
|
methods: {
|
|
closeDropdown() {
|
|
this.$children.forEach(item =>{
|
|
item.close();
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.dropdown-menu {
|
|
display: flex;
|
|
overflow: auto;
|
|
white-space: nowrap;
|
|
}
|
|
dropdown-item {
|
|
flex: 1;
|
|
}
|
|
</style>
|