我一直试图从方法“ itemChange ”访问我的“ 选定的”数据,一无所获。
我得到的错误是“ this.selected is undefined ”(未定义)
我的问题是如何从方法访问组件数据?
我的组件实现
import VueSelect from 'vue-select';
Vue.component('v-select', VueSelect);
Vue.component('club-type',{
template: "#club-type",
props: ['options'],
data: {
selected: {title: 'My title', logo: 'logo here', info: 'info here'}
},
methods: {
itemChange: function () {
console.log("msg: " + this.selected['title']);
}
}
});
我的模板
<script type="text/x-template" id="club-type">
<v-select :options="options" label="title" :on-change="itemChange" :searchable="false" v-model="selected">
<template slot="option" scope="option">
<div class="float-left-items">
<div class="club-type-thumb" v-if="option.logo"><img v-bind:src="option.logo"></div>
<div class="club-type-title">{{ option.title }} <br/> <span class="pill club-type-pill"> AGE {{ option.age }}</span></div>
</div>
</template>
</v-select>
</script>
在上面的模板中,如果我添加 v-model =“ selected” ,则会显示错误“ selected is undefined。”。
答案 0 :(得分:1)
首先,您需要返回数据:
data () {
return {
selected: { title: 'My title', logo: 'logo here', info: 'info here' }
}
},
然后,它不是数组,因此无法像在方法中尝试的那样访问它。您必须将其称为属性。
this.selected.title
编辑:如@Phil所述,第二点不是必需的。