[Vuejs]-Mount vue multiselect to newly generated component

0👍

okey,Every time you mount a Vue instance, you need to rebuild a new Vue instance, instead of using the same Vue instance over and over again.

function addVues(vc){ 
  new Vue({...}).$mount('#metric1_'+vc); 
}

Leave a comment