Commit 5a02cf4c0a1f1e92f38f4b9c786388d383b45b22

Authored by zhigang.li
1 parent 66a8c45f

update

src/components/dropdown/dropdown-menu.vue
... ... @@ -2,5 +2,7 @@
2 2 <ul class="ivu-dropdown-menu"><slot></slot></ul>
3 3 </template>
4 4 <script>
5   - export default {};
  5 + export default {
  6 + name: 'DropdownMenu'
  7 + };
6 8 </script>
... ...
src/components/select/index.js
... ... @@ -2,4 +2,6 @@ import Select from &#39;./select.vue&#39;;
2 2 import Option from './option.vue';
3 3 import OptionGroup from './option-group.vue';
4 4  
5   -export { Select, Option, OptionGroup };
6 5 \ No newline at end of file
  6 +export { Select, Option, OptionGroup };
  7 +
  8 +export default Select;
7 9 \ No newline at end of file
... ...