| 1234567891011121314151617181920212223242526272829303132333435 |
- <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>
|