vue props传值失败 输出undefined的解决方法

如果在prop中传的值为一个没有使用特殊命名规则的变量如:(type),可以顺利传值:

Vue.component("test",{ props: ['type'],template: '
',methods: { a() { console.log(this.type); } } }); var app = new Vue({ el: '#app',data: { type: 'test' } });

而当这个变量为驼峰命名法如:(selectName),就会传不过去:

Vue.component("test",{ props: ['selectName'],template: '
',methods: { a() { console.log(this.selectName); } } }); var app = new Vue({ el: '#app',data: { selectName: 'test' } });

解决方法是把selectName标签改为select-Name:

Vue.component("test",data: { selectName: 'test' } });

总结:

如果为驼峰命名法传递的话,html不区分大小写(所有的都会转换为小写),所以testName 在html表现为 :test-name ,需要注意的是vue中使用props传递时最好不要用横杆如select-name 的写法,因为使用的时候this.select-name中的横杠会认为它是减号,导致辨认不出来。在定义事件的时候最好命名都为小写,如

不要写成

html同样认不出来,比较好的方式是这种

以上这篇vue props传值失败 输出undefined的解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

相关文章

问题现象 elmentui的el-tree数据加载问题,导致第一次加载选中当前节点和高亮当前节点没有生效。 解决方...
因为刚打开文件,vscode默认是预览状态,如果编辑过之后,就不会有这个问题。 可以通过双击将预览状态接...
前言 上篇文章我们介绍了国产SM4加密算法的后端java实现方案。没有看过的小伙伴可以看一下这篇文章。 h...
在项目中引入动态路由时报错 写法: 报错: Module build failed (from ./node_modules/_eslint-loader@2...
问题产生 在使用babel编译es6时,遇到报错Uncaught ReferenceError: regeneratorRuntime is not define...
父组件的编写 <a:orgCode=orgCode ></a> 在data里面增加...