Shopify/remote-dom

when i pass slots in jsx in createRemoteVueComponent then only default slot is transfered from remote to host

hamza-rd opened this issue · 1 comments

I have passed three slots in button Component as

<Button>{{
  default: () => 'default slot',
  foo: () => <Div>foo</Div>,
  bar: () => [<Div>one</Div>, <Div>two</Div>]
}}</Button>

but the host side always receives only default slot. how can i send other slot so that these can be rendered inside the host?
In below screenshot it can be seen as i am sending three slots but only one is received
Screenshot from 2023-08-02 17-46-57

Hi @hamza-rd. I've left a more detailed comment on the discussion topic you opened about some major changes to this project that affect how you can pair it with Vue.