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

ObjectDirective does not work with defineSlots after upgrading to 2.0.15 #4327

Closed
skywalker512 opened this issue Apr 30, 2024 · 2 comments
Closed
Labels
bug Something isn't working good reproduction ✨ This issue provides a good reproduction, we will be able to investigate it first

Comments

@skywalker512
Copy link

skywalker512 commented Apr 30, 2024

When both ObjectDirective and defineSlots appear in the same sfc, ObjectDirective cannot work (v-test must be written in the slot).

<script setup lang="ts">
import { vTest } from '../directive';

defineSlots<{
  default(): any;
}>();
</script>

<template>
  <h1>{{ msg }}</h1>

  <slot>
    <p v-test="{}">Default slot content</p>
  </slot>
</template>

Reproduce repo https://github.com/skywalker512/vue-ls-directive

@so1ve
Copy link
Member

so1ve commented Apr 30, 2024

Maybe fixed by #4326? Could you please check @zhiyuanzmj?

@zhiyuanzmj
Copy link
Member

Maybe fixed by #4326? Could you please check @zhiyuanzmj?

No, It only affects the slots destructuring

@johnsoncodehk johnsoncodehk added bug Something isn't working good reproduction ✨ This issue provides a good reproduction, we will be able to investigate it first labels Apr 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working good reproduction ✨ This issue provides a good reproduction, we will be able to investigate it first
Projects
None yet
Development

No branches or pull requests

4 participants