Created
March 6, 2018 11:15
-
-
Save descovi/956552ed9b5f3a75daf6f31472e88a9f to your computer and use it in GitHub Desktop.
Utilizzo di vue con tag <select> + binding di un valore strutturato ({name: 'Ciccio', id: 1})
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select type="text" | |
class="form-control" | |
v-model="momento.project" | |
name="project_id"> | |
<option v-for="project in projects" | |
v-bind:value="{name: project.name, id: project.id}"> | |
{{ project.name }} | |
</option> | |
</select> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment