Skip to content

Instantly share code, notes, and snippets.

@JulienTant
Created November 3, 2015 20:55
Show Gist options
  • Save JulienTant/a81d0441fe2fbd97a05a to your computer and use it in GitHub Desktop.
Save JulienTant/a81d0441fe2fbd97a05a to your computer and use it in GitHub Desktop.
<template>
<pre class="{{ language ? 'language-' + language : '' }}">
<code >
<slot />
</code>
</pre>
</template>
<script type="text/ecmascript-6">
var hljs = require('highlight.js');
export default {
props: ['language'],
ready () {
hljs.highlightBlock(this.$el);
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment