其他分享
首页 > 其他分享> > vue中的父子组件传参 Propos解析

vue中的父子组件传参 Propos解析

作者:互联网

自定义一个学生组件:Student

<template>
	<div>
		<h1>{{msg}}</h1>
		<h2>学生姓名:{{name}}</h2>
		<h2>学生性别:{{sex}}</h2>
		<h2>学生年龄:{{myAge+1}}</h2>
		<button @click="updateAge">尝试修改收到的年龄</button>
	</div>
</template>

<script>
	export default {
		name:'Student',
		data() {
			console.log(this)
			return {
				msg:'我是一个学生',
				myAge:this.age
			}
		},
		methods: {
			updateAge(){
				this.myAge++
			}
		},
		//简单声明接收
		// props:['name','age','sex'] 
	}
</script>

标签:传参,myAge,vue,name,学生,Student,msg,sex,Propos
来源: https://www.cnblogs.com/qingheshiguang/p/15033162.html