vuejs / vue-class-component

ES / TypeScript decorator for class-style Vue components.
MIT License
5.81k stars 429 forks source link

[Vue v3] how to get slots in setupFn #512

Closed AllenYu-BF closed 3 years ago

AllenYu-BF commented 3 years ago

i want to get slots in setupFn,but now there is no document.who can help me to resolve this question

LinusBorg commented 3 years ago

https://v3.vuejs.org/guide/composition-api-setup.html#context

AllenYu-BF commented 3 years ago

sorry, it's my fault. I want to know how to get slots in setupFn When Vue3 + ts + vue-class-component like the picture below image

LinusBorg commented 3 years ago

according to https://github.com/vuejs/vue-class-component/issues/416 you should be able to access them through this.$slots.

If that doesn't work it's likely a bug.

AllenYu-BF commented 3 years ago

thanks a lot,It's I didn't look carefully.