mirror of
https://gitee.com/dromara/go-view.git
synced 2025-05-17 16:44:04 +08:00
10 lines
291 B
TypeScript
10 lines
291 B
TypeScript
import hljs from 'highlight.js/lib/core'
|
|
import json from 'highlight.js/lib/languages/json'
|
|
import typescript from 'highlight.js/lib/languages/typescript'
|
|
|
|
export const useHook = () => {
|
|
hljs.registerLanguage('json', json)
|
|
hljs.registerLanguage('typescript', typescript)
|
|
return hljs
|
|
}
|