JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q49795F
  • License MIT

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

img.png

Prop language is optional since highlight.js could automatically infer the language if it's not set.

on npm

on github