vue-prism-component
vue-prism-component copied to clipboard
Possible to render code directly within the <prism></prism> tags?
For example:
<template>
<div>
<prism language="javascript">query {
post(id: 1) {
id
title
body
}
}</prism>
</div>
</template>
When I do this, the code is all put on one line.