在将项目添加到v自动完成组件的选项列表中时,如何获得事件或设置侦听器方面需要一些帮助。
自动完成功能扩展了v-select,并且在v-select代码中有this block:
onScroll () {
if (!this.isMenuActive) {
requestAnimationFrame(() => (this.content.scrollTop = 0))
} else {
if (this.lastItem >= this.computedItems.length) return
const showMoreItems = (
this.content.scrollHeight -
(this.content.scrollTop +
this.content.clientHeight)
) < 200
if (showMoreItems) {
this.lastItem += 20
}
}
},
我需要注意到新一批商品已添加到DOM。
例如,当您通过单击字体下拉菜单并单击“更多字体...”的第一个选项来选择字体时,我需要获得的功能是在Google Docs上>
滚动字体列表时,页面将获取下一批字体以加载到页面。