Package Exports
- vue3-highlight-component
- vue3-highlight-component/dist/vue3-highlight-component.common.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue3-highlight-component) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vue3-highlight-component
Usage
<template>
<HighLight :with-header="true" language="js" header-language="JavaScript" :code="code"/>
</template>
<script>
import hljs from 'highlight.js'
import HighLight from "vue3-highlight-component";
// Register the language if it's not supported by default
hljs.registerLanguage('js', require('highlight.js/lib/languages/javascript'))
export default {
name: 'App',
data() {
return {
code: `your js code...`
}
},
components: {
HighLight
}
}
</script>
<!-- you can choose alot of diffrent styles from highlight.js/styles in your node_modules -->
<style src="highlight.js/styles/panda-syntax-dark.css"></style>
Example
Prop language
is optional since highlight.js could automatically infer the language if it's not set.