-3

I have installed VueJS chrome extension:

VueJS chrome extension

but I find it quite useless unless I am missing something. So I posted the question here if some one can provide what I am missing.

I setup this vuejs project:

Kazoo on github

This project has several vue components but most of these components do not show up in vuejs chrome extension. This is the screenshot: Kazoo on github

Phil
  • 157,677
  • 23
  • 242
  • 245
ace
  • 11,526
  • 39
  • 113
  • 193

1 Answers1

2

The Vue devtools show the application as you are viewing it now (just like the DOM viewer shows you the DOM elements that are currently on the page). Clicking a component will show you the internal state of that component, such as props and data. This allows you to infer where a problem may be originating when you see a bug occur in your application. It also allows you to figure out if the correct components are being loaded. It does not show you components that are currently not in the document, as it would not be useful.

The vuex tab will allow you to inspect the entire store, and all mutations that have been done and with what payload since the vue devtools initialised. It will show you what is computed by the getters.

The Events tab will show you which events have been fired. This may be particularly nice if you have a framework that uses them, or if you use global events yourself.

Sumurai8
  • 20,333
  • 11
  • 66
  • 100