Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

slotProps are not available in scoped slot with new v-slot syntax #1457

Closed
sybrendotinga opened this issue Mar 5, 2020 · 4 comments · Fixed by #1485
Closed

slotProps are not available in scoped slot with new v-slot syntax #1457

sybrendotinga opened this issue Mar 5, 2020 · 4 comments · Fixed by #1485
Labels

Comments

@sybrendotinga
Copy link

Version

1.0.0-beta.31

Reproduction link

https://codesandbox.io/s/ecstatic-nightingale-2u1t6?fontsize=14&hidenavigation=1&previewwindow=tests&theme=dark

Steps to reproduce

Run tests in CodeSandbox. I have provided two tests:

  1. With the deprecated scoped-slot syntax works: fullName is available.
  2. With the new v-slot-syntax: fullName is undefined

What is expected?

I expected to have fullName available in slotProps

What is actually happening?

fullName is undefined


I have searched several similar issues in this repo, but it seems that the new syntax should work in beta.31. Maybe I am overlooking something?

https://vuejs.org/v2/guide/components-slots.html#Scoped-Slots

@lmiller1990
Copy link
Member

lmiller1990 commented Mar 10, 2020

Good catch. There is one bug here

The code should be spreading props, like the others, eg res = renderFn.call({ ...helpers, ...props }), I think.

This gets rid of the error we have. But then you end up with:

"<div class=\"hello\">
      <h1><template></template></h1>
      <div>
        My name:
        <input></div>
    </div>"

As the HTML... it's failing to use the template contents. hm...

@doutatsu
Copy link

I am seeing this bug as well. Can't use either v-slot:body syntax (Raises Jest encountered an unexpected token), neither the shorthand syntax #body (Raises SyntaxError: Unexpected character '#'.

When using deprecated syntax, tests run without issues...

@lmiller1990
Copy link
Member

Will try to get onto this soon - not sure how involved it'll be, so I can't make any promises right now. But I think this is an important one to solve, I love thew new syntax.

dobromir-hristov added a commit that referenced this issue Mar 23, 2020
* feat: update scope-slot detection

* fix: fix issue with empty template tag when using v-slot

* test: add more v-slot tests
@sybrendotinga
Copy link
Author

Thanks @dobromir-hristov @lmiller1990 , works great!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants