YoungSx
7/12/2017 - 9:36 AM

虚拟列表精髓 #tags: render,slots,虚拟列表

虚拟列表精髓 #tags: render,slots,虚拟列表

export default {
  name: 'item',
  props: [
    'item',
    'k'
  ],
  render: function (createElement) {
    return createElement(
        'div',
        this.$slots.default.filter(function (slot, index) {
          return index > 5 && index < 10
        })
    )
  }
}