## v-model ```html
Selected: {{ selected }}
``` ```js new Vue({ el: 'example-6', data: { selected: 'A', options: [ { text: 'One', value: 'A' }, { text: 'Two', value: 'B' }, { text: 'Three', value: 'C' } ] } }) ```