简单理解vue中Props属性


Posted in Javascript onOctober 27, 2016

本文实例为大家解析了vue中Props的属性,供大家参考,具体内容如下

使用 Props 传递数据

组件实例的作用域是孤立的。这意味着不能并且不应该在子组件的模板内直接引用父组件的数据。可以使用 props 把数据传给子组件。

“prop” 是组件数据的一个字段,期望从父组件传下来。子组件需要显式地用 props 选项 声明 props:

Vue.component('child', {
 // 声明 props
 props: ['msg'],
 // prop 可以用在模板内
 // 可以用 `this.msg` 设置
 template: '<span>{{ msg }}</span>'
})

然后向它传入一个普通字符串:

<child msg="hello!"></child>

举例

错误写法:

<!DOCTYPE html>
<html lang="en">

<head>
 <script type="text/javascript" src="./vue.js"></script>
 <meta charset="UTF-8">
 <title>vue.js</title>
</head>

<body>
<pre>
 //使用 props 传输资料予子组件
 //props , data 重复名称会出现错误


</pre>
<div id="app1">
 <child mssage="hello!"></child>
</div>
<script>
 Vue.config.debug = true;
 Vue.component('child', {
 // declare the props
 props: ['msg','nihao','nisha'],
 // the prop can be used inside templates, and will also
 // be set as `this.msg`
 template: '<span>{{ msg }}{{nihao}}{{nisha}}</span>',
 data: function() {
 return {
 mssage: 'boy'
 }
 }
 });
 var vm = new Vue({
 el: '#app1'
 })
</script>
</body>

</html>

正确写法:

<!DOCTYPE html>
<html lang="en">

<head>
 <script type="text/javascript" src="./vue.js"></script>
 <meta charset="UTF-8">
 <title>vue.js</title>
</head>

<body>
<pre>
 //使用 props 传输资料予子组件
 //props , data 重复名称会出现错误


</pre>
<div id="app1">
 <child mssage="hello!"></child>
</div>
<script>
 Vue.config.debug = true;
 Vue.component('child', {
 // declare the props
 props: ['msg','nihao','nisha'],
 // the prop can be used inside templates, and will also
 // be set as `this.msg`
 template: '<span>{{ msg }}{{nihao}}{{nisha}}</span>'
 });
 var vm = new Vue({
 el: '#app1'
 })
</script>
</body>

</html>

props 传入多个数据(顺序问题)

第一种:

HTML             

<div id="app1">
<child msg="hello!"></child>
<child nihao="hello1!"></child>
<child nisha="hello2!"></child>
</div>

JS

Vue.config.debug = true;
 Vue.component('child', {
 // declare the props
 props: ['msg','nihao','nisha'],
 // the prop can be used inside templates, and will also
 // be set as `this.msg`
 template: '<span>{{ msg }}{{nihao}}{{nisha}}</span>',
 /*data: function() {
 return {
 msg: 'boy'
 }
 }*/
 });
 var vm = new Vue({
 el: '#app1'
 })

结果:hello! hello1! hello2!

第二种:

HTML

<div id="app1">
<child msg="hello!"></child>
 <child nihao="hello1!"></child>
 <child nisha="hello2!"></child>
</div>

JS

Vue.config.debug = true;
 Vue.component('child', {
 // declare the props
 props: ['msg','nihao','nisha'],
 // the prop can be used inside templates, and will also
 // be set as `this.msg`
 template: '<span>123{{ msg }}{{nihao}}{{nisha}}</span>',
 /*data: function() {
 return {
 msg: 'boy'
 }
 }*/
 });
 var vm = new Vue({
 el: '#app1'
 })

结果:123hello! 123hello1! 123hello2!

第三种:

HTML

<div id="app1">
<child msg="hello!"></child>
<child nihao="hello1!"></child>
 <child nisha="hello2!"></child>
</div>

JS

Vue.config.debug = true;
 Vue.component('child', {
 // declare the props
 props: ['msg','nihao','nisha'],
 // the prop can be used inside templates, and will also
 // be set as `this.msg`
 template: '<span>{{ msg }}{{nihao}}{{nisha}}123</span>',
 /*data: function() {
 return {
 msg: 'boy'
 }
 }*/
 });
 var vm = new Vue({
 el: '#app1'
 })

结果:hello! 123 hello1! 123 hello2!123

第四种:

HTML                 

<div id="app1">
<child msg="hello!"></child>
<child nihao="hello1!"></child>
<child nisha="hello2!"></child>
</div>

JS

Vue.config.debug = true;
 Vue.component('child', {
 // declare the props
 props: ['msg','nihao','nisha'],
 // the prop can be used inside templates, and will also
 // be set as `this.msg`
 template: '<span>{{ msg }}123{{nihao}}{{nisha}}123</span>',
 /*data: function() {
 return {
 msg: 'boy'
 }
 }*/
 });
 var vm = new Vue({
 el: '#app1'
 })

结果:hello! 123 123hello1! 123hello2!

结论:

在props 中传入多个数据是,如果在父组件的模板类添加其他元素或者字符会有:
1-在最前面加入—每个子组件渲染出来都会在其前面加上

2-在最后面加入—每个子组件渲染出来都会在其后面加上

3-在中间加入—他前面子组件后面加上,后面的子组件后面加上

参考: http://cn.vuejs.org/guide/components.html#Props

本文已被整理到了《Vue.js前端组件学习教程》,欢迎大家学习阅读。

关于vue.js组件的教程,请大家点击专题vue.js组件学习教程进行学习。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
取得传值的函数
Oct 27 Javascript
用jQuery打造TabPanel效果代码
May 22 Javascript
JQuery表格内容过滤的实现方法
Jul 05 Javascript
使用jQuery设置disabled属性与移除disabled属性
Aug 21 Javascript
js父页面与子页面不同时显示的方法
Oct 16 Javascript
jquery+php实现搜索框自动提示
Nov 28 Javascript
jQuery中queue()方法用法实例
Dec 29 Javascript
javascript实现在网页中运行本地程序的方法
Feb 03 Javascript
详解支持Angular 2的表格控件
Jan 19 Javascript
还不懂递归?读完这篇文章保证你会懂
Jul 29 Javascript
Vue中的验证登录状态的实现方法
Mar 09 Javascript
理解Proxy及使用Proxy实现vue数据双向绑定操作
Jul 18 Javascript
利用React-router+Webpack快速构建react程序
Oct 27 #Javascript
如何使用Vuex+Vue.js构建单页应用
Oct 27 #Javascript
浅析如何利用JavaScript进行语音识别
Oct 27 #Javascript
javascript鼠标跟随运动3种效果(眼球效果,苹果菜单,方向跟随)
Oct 27 #Javascript
简单理解vue中track-by属性
Oct 26 #Javascript
javascript iframe跨域详解
Oct 26 #Javascript
JS日期对象简单操作(获取当前年份、星期、时间)
Oct 26 #Javascript
You might like
模仿OSO的论坛(四)
2006/10/09 PHP
php下使用iconv需要注意的问题
2010/11/20 PHP
php从文件夹随机读取文件的方法
2015/06/01 PHP
PHP微信公众号自动发送红包API
2016/06/01 PHP
Thinkphp框架开发移动端接口(2)
2016/08/18 PHP
Mac下php 5升级到php 7的步骤详解
2017/04/26 PHP
PHP实现的简单在线计算器功能示例
2017/08/02 PHP
js删除所有的cookie的代码
2010/11/25 Javascript
checkbox勾选判断代码分析
2014/06/11 Javascript
jQuery 如何实现一个滑动按钮开关
2016/12/01 Javascript
如何提高数据访问速度
2016/12/26 Javascript
利用VUE框架,实现列表分页功能示例代码
2017/01/12 Javascript
jQuery图片拖动组件Dropzone用法示例
2017/01/17 Javascript
Vue父组件调用子组件事件方法
2018/02/23 Javascript
使用vue的transition完成滑动过渡的示例代码
2018/06/25 Javascript
详解Vue中使用Axios拦截器
2019/04/22 Javascript
如何使用JavaScript实现栈与队列
2019/06/24 Javascript
详解JWT token心得与使用实例
2019/08/02 Javascript
微信小程序引入VANT组件的方法步骤
2019/09/19 Javascript
Python中使用urllib2模块编写爬虫的简单上手示例
2016/01/20 Python
Python使用微信SDK实现的微信支付功能示例
2017/06/30 Python
python 列表,数组,矩阵两两转换tolist()的实例
2018/04/04 Python
python获取代码运行时间的实例代码
2018/06/11 Python
numpy np.newaxis 的实用分享
2019/11/30 Python
python如何使用socketserver模块实现并发聊天
2019/12/14 Python
python使用ctypes调用扩展模块的实例方法
2020/01/28 Python
python访问hdfs的操作
2020/06/06 Python
HTML5中视频音频的使用详解
2017/07/07 HTML / CSS
澳大利亚香水在线商店:City Perfume
2020/09/02 全球购物
JDO的含义
2012/11/17 面试题
文明礼仪小标兵事迹
2014/01/12 职场文书
优秀班主任主要事迹材料
2014/12/16 职场文书
研究生毕业论文导师评语
2014/12/31 职场文书
防卫过当辩护词
2015/05/21 职场文书
springcloud之Feign超时问题的解决
2021/06/24 Java/Android
Python利用机器学习算法实现垃圾邮件的识别
2021/06/28 Python