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);
}
Source:stackexchange.com
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);
}