在Vue 2.0应用程序中,假设我们有组件a、B和C。
A声明、登记和使用B
有可能把C从A传到B吗?
像这样的东西:
<template>
<div class="A">
<B :child_component="C" />
</div>
</template>
在B中使用C。
<template>
<div class="B">
<C>Something else</C>
</div>
</template>
动机:我想创建一个通用组件B
,它在a
中使用,但从a
其子C
接收。实际上,A
将使用B
多次向其传递不同的“C”。
如果这种方法不正确,在Vue中正确的方法是什么?
回答@Saurabh
我没有作为道具通过,而是尝试了B中的建议。
<!-- this is where I Call the dynamic component in B -->
<component :is="child_component"></component>
//this is what I did in B js
components: {
equip: Equipment
},
data () {
return {
child_component: 'equip',
_list: []
}
}
基本上我是在尝试渲染设备,但是动态方式
我在控制台中得到3个错误和一个空白页
[Vue warn]:在/home/victor/projetos/tokaai/public/src/components/EquipmentFormItem.Vue中呈现组件时出错:
无法读取未定义的属性名称
TypeError:无法读取未定义的属性“setAttribute”
显然我做错了什么
下面是通过另一个组件的道具转发自定义组件的解决方案
: is
是一个特殊的属性,它将被用来替换您的实际组件,如果您试图在组件中使用它作为道具,它将被忽略。幸运的是,您可以使用其他东西,如el
,然后将其转发到组件
,如:
<template>
<div>
<component :is="el">
<slot />
</component>
</div>
</template>
<script>
export default {
name: 'RenderDynamicChild',
props: {
el: {
type: [String, Object],
default: 'div',
},
},
}
</script>
在el
属性中使用的任何有效元素都将用作子组件。默认情况下,它可以是html或对自定义组件或组件声明中指定的div的引用。
将自定义组件传递给prop有点棘手。人们会假设您在父组件的组件
属性中声明,然后将其用于el
属性,但这不起作用。相反,您需要将您的动态组件放在data
或comated
属性中,以便您可以在模板中使用它作为道具。还要注意,不需要在组件属性中声明。
<template>
<RenderDynamicChild :el="DynamicComponent">
Hello Vue!
</RenderDynamicChild>
</template>
<script>
import RenderDynamicChild from './DynamicChild';
import AnotherComponent from './AnotherComponent';
export default {
name: "ParentComponent",
components: { DynamicChild },
data() {
return {
DynamicComponent: AnotherComponent,
};
},
};
</script>
为您的动态组件使用计算属性可以让您轻松地在组件之间切换:
<script>
import DynamicChild from './DynamicChild';
import AnotherComponent from './AnotherComponent';
export default {
name: "ParentComponent",
components: { DynamicChild },
data() { return { count: 0 } },
computed: {
DynamicComponent() {
return this.count % 2 > 1 ? AnotherComponent : 'article';
},
},
};
</script>
增加this.count
以在AntherComponent
和简单的文章
html元素之间交替。
可以使用特殊属性is
来做这种事情。动态组件及其用法的示例可以在这里找到。
您可以使用相同的装载点,并使用保留元素在多个组件之间动态切换,并动态绑定到其is属性:
您的代码如下所示:
<template>
<div class="B">
<component :is="child_component"> Something else</component>
</div>
</template>
总结:
<!-- Component A -->
<template>
<div class="A">
<B>
<component :is="child_component"></component>
</B>
</div>
</template>
<script>
import B from './B.vue';
import Equipment from './Equipment.vue';
export default {
name: 'A',
components: { B, Equipment },
data() {
return { child_component: 'equipment' };
}
};
</script>
<!-- Component B -->
<template>
<div class="B">
<h1>Some content</h1>
<slot></slot> <!-- Component C will appear here -->
</div>
</template>
问题内容: 可以说我有: 在Tabs组件内部,具有属性 儿童[0](this.props.children)看起来像 儿童[0]。道具看起来像 最终,Children对象看起来像(这是我想要传递的): 问题是这样,如果我这样重写MultiTab 在选项卡组件内部 看起来和上面一样。 好像 我希望该物业看起来像。上面只是打印出Statement函数。 这是一个很奇怪的问题,但是长话短说,我正在使用一
我使用的是dev-express中的react-grid库,库中有一个表组件,我们可以向它传递单元格组件,在CustomCell中,我使用的是Material UI中的菜单 在上述情况下,菜单工作良好, 但是我想要传递道具到这个组件,我尝试了以下操作 在这种情况下菜单不工作,我想知道是否有一个替代的方法来实现第二种情况。
我试图传递一个包装组件作为道具。在React中,这样的事情在技术上是可能的吗?
我用这个包裹https://www.npmjs.com/package/vue-sweetalert2我想通过vue中的vue组件。以html的形式浏览。 但什么都没有。我是VueJs新手,我仍然不完全理解如何将组件作为html插入。
我正在使用react语义ui模态对象。打开模态的对象是一个道具。 我想在另一个组件中嵌入模态: 如何传递JSX代码(
我试图使用{children}将道具传递给子组件。 父亲组件: 子组件: 像这样使用它们: 我想把来自FatherComp的道具直接传递给ChildComp: 是否有可能实现我试图直接使用react功能组件而无需状态管理的目标? 谢谢