highlightjs / vue-plugin

Highlight.js Vue Plugin
BSD 3-Clause "New" or "Revised" License
200 stars 28 forks source link

can you post an example of vue2 #29

Closed lzcxfz closed 2 years ago

lzcxfz commented 2 years ago

can you post an example of vue2?

joshgoebel commented 2 years ago

The branch for v2 has examples.

M69W commented 2 years ago

package.json

"@highlightjs/vue-plugin": "^1.0.2",
"highlight.js": "^10.7.3",

main.js

import hljsVuePlugin from '@highlightjs/vue-plugin'
import hljs from 'highlight.js/lib/core'
import javascript from 'highlight.js/lib/languages/javascript'
import 'highlight.js/styles/a11y-dark.css'

hljs.registerLanguage('javascript', javascript)
Vue.use(hljsVuePlugin)

vue

<highlightjs language="javascript" :code="code" />
joshgoebel commented 2 years ago

Thanks! Link to 1-stable branch is in the README.

lzcxfz commented 2 years ago

Thanks! Link to 1-stable branch is in the README.

sorry, I didn't pay attention to the branch.