Skip to content

Instantly share code, notes, and snippets.

@bmorrisondev
Created January 18, 2019 14:33
Show Gist options
  • Save bmorrisondev/9787052b38ebad4e9e6fe8fbdfc7ec35 to your computer and use it in GitHub Desktop.
Save bmorrisondev/9787052b38ebad4e9e6fe8fbdfc7ec35 to your computer and use it in GitHub Desktop.
A VueJS template to display formatted code on a page using PrismJS
<template>
<div>
<prism language="json" :code="JSON.stringify(data, null, 4)"></prism>
</div>
</template>
<script>
import Prism from 'vue-prismjs'
import 'prismjs/themes/prism.css'
export default {
name: 'PrismView',
components: {
Prism
},
data: function() {
return {
data: Object
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment