Vuejs : is it possible to name Vue instances in vue-devtools? Vuejs : is it possible to name Vue instances in vue-devtools? vue.js vue.js

Vuejs : is it possible to name Vue instances in vue-devtools?


By "multiple instances of Vue", if you mean you have multiple new Vue({}) instances, then you can give each its own name as:

new Vue({  name: 'Samayo'})

And now the <Root> in your devtools will be replaced with <Samayo>