Vue组件传值

  • 父组件向子组件传递数据(props)


	
/*在标签内使用父组件的数据*/

 

  • 父组件向子组件传递函数(this.$emit)



	

 

  • 子组件向父组件传递数据(另存this$emit的参数)



	

 

你可能感兴趣的:(vue)