Have an md-select with options coming from an endpoint. Options load correctly, values load correctly but doesn't display in the select box.
Which browser?Chrome 62, Ubuntu 16.04
VueMaterial 1.0.0-beta-7
What is expected? What is actually happening?As can be seen, the v-model is correctly loading but the field remains empty (here this select in particular is a multiple, but it's also broken for the single selects)
Reproduction LinkSimplest repro:
<template>
<md-field>
<label>Payment Modes <span class="red">*</span></label>
<md-select required v-model="paymentModes" multiple>
<md-option v-for="option in options" :key="option" :value="option">{{option}}</md-option>
</md-select>
</md-field>
</template>
<script>
export default {
data() {
return { options: [] }
},
async mounted() {
this.options = await someApiCall();
this.selected = await anotherApiCall();
}
}
</script>
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4