Skip to content

Instantly share code, notes, and snippets.

@Akryum
Created January 14, 2018 17:48
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 Akryum/0187dbfd782d584eef46e85622685bac to your computer and use it in GitHub Desktop.
Save Akryum/0187dbfd782d584eef46e85622685bac to your computer and use it in GitHub Desktop.
Inspect Vue component
<template>
<div>
<button @click="inspect">Inspect me!</button>
</div>
</template>
<script>
export default {
methods: {
inspect () {
this.$inspect()
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment