vue —— 父组件同一时间多次调用子组件方法

子组件方法 child.vue

<div>{{msg}}</div>

props: {
	msg: {
		type: String,
		default: ''
	}
},
methods: {
	getData () {
		console.log(msg)
	}
}

父组件 fa.vue

1.引入子组件
import child from './child'
data () {
	return {
		list: [
			{
				msg: 'hhhh',
				index: 0
			},
			{
				msg: 'xxxx',
				index: 0
			}
		]
	}
components: {
	child
}
2.页面使用,多次调用方法,可以渲染多个子组件
<child v-for="(item, i) in list" :key="index" :msg="item.msg" ref="childRef"></child>
3. 多次调用子组件方法
mounted () {
	this.showData()
}
methods: {
	showData () {
		this.$nextTick(() => {
			//arr 页面循环渲染的子组件,多个为数组
			const arr = this.$refs['childRef']
			arr.forEach((item) => {
			// item 获取到的就是页面循环渲染的子组件
				setTimeout(() => {
				// this.$refs.子组件ref.子组件方法
					item.getData() // hhhh xxxx
				}, 1000)
			})
		})	
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值