を支える認識し、私がやっているので、<v-select>
を使用しようとしないことです:V-選択は、私はVueJsファイルに取り組んでいるラベルが
<v-select :options="divisions" label="text" ></v-select>
012:
id
と
text
が、私は私のページに行くよときに私が代わりに私の部門値ここ
のそれぞれについてtext
値の<% getOptionLabel(option) %>
を持っているがconsole.log(this.divisions)
のスクリーンショットです
だから、これは私のコードです:
<form id="MassUpdateDivisionForm">
<v-select v-bind:label="text" :options="divisions"></v-select>
</form>
<script>
import vSelect from "js/vue-select/vue-select.js"
export default {
props: ['product'],
components: {vSelect},
data() {
return {
divisions: []
}
}
methods: {
getDivisions(){
let self = this
this.$http({
url: 'divisions',
method: 'get'
}).then((response)=>{
self.$set('divisions', response.data)
console.log(self.divisions)
//that's where I got the pic
},(response)=>{
alert('something went wrong')
}
)
}
},
created() {
this.getDivisions()
},
}
</script>
のいずれかを使用してlabel属性にバインドしていることを確認してください。 – Bert