I was working with select2 in vuejs , I found vuejs is not working with jquery select2 as vuejs is working with navite html.
I am using this code
Try add v-on:change="onChange" in your select control
v-on:change="onChange"
HTML template
Atul Niklesh Sachin
"onChange" is the name of your method
JavaScript
methods: { onChange(e) { alert("Change"); } }