0👍
your div app was closing, in the middle of the html, you should change that to enclose all your app. Add v-model to your select multiple and you are good to show selected values.
<select multiple v-model="selected">
your data
data() {
return {
selected: []
}
}
- [Vuejs]-Upload a file with from vuejs app using ajax post
- [Vuejs]-Vue-tables-2 filtering arguments passed from parent component
Source:stackexchange.com