大家好,又见面了,我是你们的朋友全栈君。
父组件向子组件传值
通过父组件传值调用子组件显示不同的数据
父组件 :conponent.vue
子组件:iconponent.vue
父组件
<template>
<div>
<span>父组件</span>
<icomponent-box :id="this.id"></icomponent-box>
</div>
</template>
<script>
//导入子组件
import icomponent from './icomponent.vue';
export default {
data () {
return {
id:12
}
},
components:{ //用来注册子组件的节点
"icomponent-box": icomponent
}
}
</script>
<style>
</style>
子组件
<template>
<div>子组件</div>
</template>
<script>
export default {
data () {
return {
}
},
methods:{
getComponents(){
this.$http.get("api/getcomponents/" + this.id);
}
},
props: ["id"] //接收父组件传递过来的id值
}
</script>
更多参考:https://blog.csdn.net/lander_xiong/article/details/79018737
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/134872.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...