mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-25 19:06:35 +08:00
11 lines
308 B
TypeScript
11 lines
308 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'
|
|
|
|
// * code 展示
|
|
export const useCode = () => {
|
|
hljs.registerLanguage('json', json)
|
|
hljs.registerLanguage('typescript', typescript)
|
|
return hljs
|
|
}
|