autocomplete-suggestions.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <template>
  2. <transition name="el-zoom-in-top" @after-leave="doDestroy">
  3. <div
  4. v-show="showPopper"
  5. class="el-autocomplete-suggestion el-popper"
  6. :class="{ 'is-loading': !parent.hideLoading && parent.loading }"
  7. :style="{ width: dropdownWidth }"
  8. role="region">
  9. <el-scrollbar
  10. tag="ul"
  11. wrap-class="el-autocomplete-suggestion__wrap"
  12. view-class="el-autocomplete-suggestion__list">
  13. <li v-if="!parent.hideLoading && parent.loading"><i class="el-icon-loading"></i></li>
  14. <slot v-else>
  15. </slot>
  16. </el-scrollbar>
  17. </div>
  18. </transition>
  19. </template>
  20. <script>
  21. import Popper from 'element-ui/src/utils/vue-popper';
  22. import Emitter from 'element-ui/src/mixins/emitter';
  23. // import ElScrollbar from 'element-ui/packages/scrollbar';
  24. export default {
  25. // components: { ElScrollbar },
  26. mixins: [Popper, Emitter],
  27. componentName: 'ElAutocompleteSuggestions',
  28. data() {
  29. return {
  30. parent: this.$parent,
  31. dropdownWidth: ''
  32. };
  33. },
  34. props: {
  35. options: {
  36. default() {
  37. return {
  38. gpuAcceleration: false
  39. };
  40. }
  41. },
  42. id: String
  43. },
  44. methods: {
  45. select(item) {
  46. this.dispatch('ElAutocomplete', 'item-click', item);
  47. }
  48. },
  49. updated() {
  50. this.$nextTick(_ => {
  51. this.popperJS && this.updatePopper();
  52. });
  53. },
  54. mounted() {
  55. this.$parent.popperElm = this.popperElm = this.$el;
  56. this.referenceElm = this.$parent.$refs.input.$refs.input || this.$parent.$refs.input.$refs.textarea;
  57. this.referenceList = this.$el.querySelector('.el-autocomplete-suggestion__list');
  58. this.referenceList.setAttribute('role', 'listbox');
  59. this.referenceList.setAttribute('id', this.id);
  60. },
  61. created() {
  62. this.$on('visible', (val, inputWidth) => {
  63. this.dropdownWidth = inputWidth + 'px';
  64. this.showPopper = val;
  65. });
  66. }
  67. };
  68. </script>