Using Vue Devtools
Vue Devtools is a browser extension for Chrome and Firefox and an Electron desktop app. You can install and run it from your browser to debug your Vue.js projects during development. This extension does not work in production or remotely run projects. You can download the Vue Devtools extension from the Chrome extension page, as seen in the following screenshot:
Figure 3.8 – Vue.js Devtools Chrome extension page
You can also download the Vue Devtools extension from Firefox (https://addons.mozilla.org/en-US/firefox/addon/vue-js-Devtools/):
Figure 3.9 – Vue.js Devtools Firefox extension page
The Devtools extension reveals useful information within the browser’s developer, including performance and event tracking for any Vue component in your application during running. Once enabled, the extension will add a Vue tab to the developer’s console. The Vue tab displays a view with several...