在vue3.0使用tsx,接收不了作用域插槽传递的值

发布于 2022-09-12 23:46:13 字数 1034 浏览 28 评论 0

如下代码我有一个child.vue的子组件和parent.tsx的父组件, 但是parent.tsx接收不了作用域插槽的值,在不改变child.vue的前提下,有办法接收值吗?

// parent

import Child from './child.vue'
import { defineComponent, reactive, ref } from 'vue'
export default defineComponent({
  name: '', 
  setup() {
    return () => {
      const slot = {
        item: (text)=> <p>输出值: {text}</p>,
      }
      return (
        <Child>
          {slot}
        </Child>
      )
    }
  },
})
// child.vue
<template>
  <div class="child">
    <div>
      <slot name="item" :text="'hello from child'"></slot>
    </div>
  </div>
</template>

<script>
import { defineComponent, reactive, toRefs } from 'vue'
// import HelloWorld from '@/components/HelloWorld.vue'
export default defineComponent({
  setup() {
  },
})
</script>


<style lang="scss" scoped>
.child{
  background: burlywood;
}
</style>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情仇皆在手 2022-09-19 23:46:13

将父组件改成这样就行

import { defineComponent, reactive, ref, Slot, Slots } from 'vue'
export default defineComponent({
  name: '',
  setup() {
    return () => {
      const slot: Slots = {
        item: (scope) => [<p>输出值: {scope.text}</p>],
      }
      return <Child>{slot}</Child>
    }
  },
})
打小就很酷 2022-09-19 23:46:13
export const getSlot = (
  {
    instance,
    ctx,
    props = {}
  }: {
    instance?: ComponentPublicInstance;
    ctx?: SetupContext<EmitsOptions>;
    props?: any;
  },
  name = 'default'
) => {
  const targetSlot = instance?.$slots[name] || ctx?.slots[name];
  return (targetSlot ? targetSlot(instance) : '') || props[name];
};

我一同学写的,通过这个方式获取

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文