Skip to content

Instantly share code, notes, and snippets.

@johanbove
Last active June 13, 2019 12:06
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 johanbove/acde7ce2d983fa5a58de571e51373976 to your computer and use it in GitHub Desktop.
Save johanbove/acde7ce2d983fa5a58de571e51373976 to your computer and use it in GitHub Desktop.
el-debug component
<template>
<el-debug />
</template>
<script>
export default {
components: {
'el-debug': {
template: `<pre style="font-size: 12px;max-height: 200px;overflow:auto;">
mode: {{ $parent.mode }}
</pre>`,
},
},
data() {
return {
mode: 'Hello debug!',
};
},
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment