vue3-virtual-scroll-list icon indicating copy to clipboard operation
vue3-virtual-scroll-list copied to clipboard

Scoped slots are not being passed

Open charlesg99 opened this issue 1 year ago • 0 comments

If it can help someone, I fixed it in the release dist file:

      return createVNode(
        Tag,
        {
          key: uniqueKey,
          ref: rootRef,
        },
        {
          default: function _default() {
            return [
              createVNode(
                Comp,
                _objectSpread2(
                  _objectSpread2({}, mergedProps),
                  {}                       // <--- moved "scopedSlots" from here
                ),
                scopedSlots,               // <--- to here, should be third param of createVNode
              ),
            ]
          },
        },
      )

charlesg99 avatar Mar 01 '24 17:03 charlesg99