100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > vue父子组件间传值(props)

vue父子组件间传值(props)

时间:2018-12-16 02:48:47

相关推荐

vue父子组件间传值(props)

先定义一个子组件,在组件中注册props

<template><div><div>{{message}}(子组件)</div></div></template><script>export default {props: {message: String //定义传值的类型

}}</script><style></style>

在父组件中,引入子组件,并传入子组件内需要的值

<template><div><div>父组件</div><child :message="parentMsg"></child> </div></template><script>import child from './child' //引入child组件export default {data() {return {parentMsg: 'a message from parent' //在data中定义需要传入的值}},components: {child}}</script><style></style>

这种方式只能由父向子传递,子组件不能更新父组件内的data

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。