Skip to content

Instantly share code, notes, and snippets.

@davidcraig
Last active April 18, 2018 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidcraig/903fbaac4f1fac57bb412e05760aa5fe to your computer and use it in GitHub Desktop.
Save davidcraig/903fbaac4f1fac57bb412e05760aa5fe to your computer and use it in GitHub Desktop.
VueJS Debugging: Listing registered components.
const app = new Vue({
el: '#app'
});
// Output list of components to the browser devtools.
console.log(app.$options.components);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment