<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./js/vue.js"></script>
<title>Document</title>
</head>
<body>
<div id="app">
<div>{{pmsg}}</div>
<menu-item title="来自父组件的值"></menu-item>
<menu-item :title="ptitle" content="hello"></menu-item>
</div>
<script>
//父组件想子组件传值
//1.组件内部通过props接受传递过来的值
//2.父组件通过属性将值传递给子组件
Vue.component('menu-item', {
props: ['title', 'content'], //可以传递多个值
data: function() {
return {
msg: '子组件本身数据',
}
},
template: '<div>{{msg+"----"+title+"------"+content}}</div>'
})
var vm = new Vue({
el: '#app',
data: {
pmsg: '父组件内容',
ptitle: '动态绑定属性'
}
})
</script>
</body>
</html>
Vue:父子组件间的数据交互
最新推荐文章于 2023-10-12 07:00:00 发布