我正在VueJS 1.0中进行练习,并且正在学习有关Components的知识。在此example
,有一个input
元素必须从API 提供coupon
或某种形式code
。我必须验证。我有我的<coupon >
组成部分,并且具有的道具when-applied
。在when-applied
必须调用父功能setCoupon
,但它不会。
我只有这个错误this.whenApplied is not a function
。
<div id="demo" class="list-group">
<script id="coupon-template" type="x-template">
<input type="text" v-model="coupon" v-on:blur="whenCouponHasBeenEntered">
<div v-text="text"></div>
</script>
<coupon when-applied="setCoupon"></coupon>
</div>
这是我的app.js
档案
Vue.component('coupon', {
template: '#coupon-template',
props: ['whenApplied'],
data: function() {
return {
coupon: '',
invalid: false,
text: ''
}
},
methods: {
whenCouponHasBeenEntered: function() {
this.validate();
},
validate: function() {
if( this.coupon == 'FOOBAR') {
this.whenApplied(this.coupon);
return this.text = '20% OFF!!';
}
return this.text = 'that coupon doesn`t exists';
}
}
});
new Vue({
el: '#demo',
methods: {
setCoupon: function(coupon) {
alert('set coupon'+ coupon);
}
}
});
有人请帮忙。建议非常感谢。
您应该
bind
具有以下属性:或者您可以将简写语法用于
v-bind
:在
props
此处了解更多信息。