I've a array and I want put into a <md-select> component. On the offical documentation the list is made from static values.
I'm trying do it:
<md-select v-for="item in group" v-bind:key="item">
<md-option value="{{item.codigo}}"> {{item.nome}} </md-option>
</md-select>
export default {
data() {
return {
group: []
}
}
But it not compiles.