index.js 443 B

1234567891011121314
  1. // import Vue from 'vue'
  2. // Vue.directive('loadmore', {
  3. // bind (el, binding) {
  4. // // 获取element-ui定义好的scroll盒子
  5. // const SELECTWRAP_DOM = el.querySelector('.el-select-dropdown .el-select-dropdown__wrap')
  6. // SELECTWRAP_DOM.addEventListener('scroll', function () {
  7. // const CONDITION = this.scrollHeight - this.scrollTop <= this.clientHeight
  8. // if (CONDITION) {
  9. // binding.value()
  10. // }
  11. // })
  12. // }
  13. // })