gpt4 book ai didi

javascript - vuejs - 如何将 Prop 和事件动态传递给动态组件

转载 作者:行者123 更新时间:2023-12-05 04:55:17 26 4
gpt4 key购买 nike

我有一个动态组件,它根据每个组件的类型加载它,我传递的 Prop 在所有组件中使用

<div>
<component
:is="getComponentName(attribute.type.toLowerCase())"
:cell-value="listItem[attribute.name]"
:attribute="attribute"
:is-read-only="isReadOnly"
:row-key-id="listItem.keyId"
/>
</div>

组件是从 json 中加载的,其中每种类型都分配了一个组件

{
"dropdown" : {
"shouldLoadComponent" : "BaseDropDown"
},
"assigned" :{
"shouldLoadComponent" : "BaseDropDown"
},
"textbox" : {
"shouldLoadComponent" : "BaseInput"
},
"label": {
"shouldLoadComponent" : "BaseLabel"
},
"switch": {
"shouldLoadComponent" : "BaseSwitch"
},
"time": {
"shouldLoadComponent" : "BaseLabel"
},
"status" : {
"shouldLoadComponent" : "BaseLabel"
},
"comment": {
"shouldLoadComponent" : "BaseLabel"
},
"action": {
"shouldLoadComponent" : "BaseLabel"
},
"personalimage":{
"shouldLoadComponent" : "BaseLabel"
}
}

主要问题是有一些非通用的 props 并且它们没有在所有组件中使用

执行此操作的最佳方法是什么?

这也是事件的一个问题,因为每个事件组件都有自己独特的

最佳答案

好的,只需将 v-bindv-on 与一个对象一起使用,您就可以通过计算属性来处理对象

<component :is="myComponent"
v-bind="myComputedConditionalObject"
v-on="myComputedConditionalEventObject"
/>

关于javascript - vuejs - 如何将 Prop 和事件动态传递给动态组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65446480/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com