[Vuejs]-How to display the value of select option on value input text ? (vue.js 2)

2👍

You need to move the input inside the demo div because this is the mounted point ,

and with v-model just use quotes <input type="text" v-model="selected">

https://fiddle.jshell.net/stvct9er/2/

Leave a comment