Browser Devtools
Learn about browser devtools, the components tab, the Vuex tab, the events tab, IDE integrations.
We'll cover the following...
Vue also has tooling to aid with debugging in the form of the Vue devtools. The devtools are available as a browser plugin for both Chrome and Firefox and as a cross-platform Electron app, which can also debug Vue apps running on mobile devices.
If we’ve developed applications with React before, the Vue devtools combine functionality similar to that of the React and Redux extensions.
The tools allow us to take a look into a running Vue application, providing three different tabs to help us inspect and debug our code.
We recommend installing one of the ...