我正在将一个道具传递给组件,而该道具未定义。
我以不同的方式设置了道具名称几次,并对其进行了测试,但似乎没有任何通过
我在这里设置数据
showUserModal(id) {
this.showUser = true;
$("#singleAllUser").modal("show");
this.passUserId = id;
this.showUserRecord = true;
},
数据如下:
passUserId: "",
然后将其绑定到模态
<singleUser v-show="showUser" :modal.sync="showUserRecord" v-bind:userid="passUserId"></singleUser>
然后在模式中将其拾取为
props: {
userid: {
type: String,
required: true
}
},
我得到的结果是不确定的,我看不到为什么