Vue 父子组件通信传值(子组件中使用父组件中的数据)
2024-08-31
17
1. 父传子 props
父组件中的数据传递给子组件
官方文档:通过-Prop-向子组件传递数据
props: ['movies'],
props: {
movies: Array
},
props: {
movies: {
type: Array,
default: [],
required: true
}
},
props 的驼峰标识
<cpn :c-info="userinfo"></cpn>
props: {
cInfo: {
type: Object,
default: { name: 'liang' }
}
}
2. 使用示例
<div id="app">
<parent :article="art"></parent>
</div>
<script>
var child = {
template: `<p>{{ author }}</p>`,
props: ['author']
}
var par = {
template: `<div>
{{ article.title }}
<child :author="article.author"></child>
</div>
`,
props: ['article'],
components: {
child: child
}
}
let vm = new Vue({
el: '#app',
data: {
art: {
title: 'liang',
content: 'itqaq.com',
author: '辰风沐阳'
}
},
components: {
parent: par
}
})
</script>
3. 实战文章列表
更新于:11天前<div id="app">
<art-list :article="arts"></art-list>
</div>
<script>
var artis = {
template: `
<ul>
<li v-for="art in article">
<h1>{{ art.title }}</h1>
<img :src="art.img" style="width:200px;">
<p>{{ art.content }}</p>
</li>
</ul>
`,props: ['article']
}
let vm = new Vue({
el: '#app',
data: {
arts: [
{
title: '01',
img: 'img/01vue.jpg',
content: '01content',
},
{
title: '02',
img: 'img/01vue.jpg',
content: '02content'
},
]
},
components: {
'art-list': artis
}
})
</script>
赞一波!
相关文章
- phpoffice/phpexcel 读取Excel表格数据
- phpoffice/phpexcel 导出Excel表格数据
- 使用C#的Socket实现最简单的TCP通信示例代码
- 修改数据 update 命令
- 删除数据 delete、truncate 命令
- MySQL 添加数据 insert 命令及优化
- vue cli 项目启动 HBuilderX 编辑器的使用
- vue cli 中的 import 和 export
- Vue cli4 图片地址引入的几种方式
- vue跳转页面的方法
- Vue CLI 脚手架简介及安装
- 自定义事件子组件与父组件通信
- Vue 创建项目及目录介绍
- Vue组件插槽的使用
- Vue组件之动态组件
- Vue 组件介绍及使用
- Vue组件的data必须是一个函数、单个根元素、局部组件
- Vue指令之列表渲染
- Vue指令之条件渲染
- 对无限级分类数据进行重新排序(非树形结构)
文章评论
全部评论