naive-ui/demo/documentation/components/code/enUS/index.md
2019-12-22 15:58:51 +08:00

635 B

Code

Prequisites

Due to package size, Naive UI doesn't include highlight.js. If you want use Code, make sure you have set highlightjs before using it.

The following code shows how to set hljs of Naive UI. Importing highlight.js on demand is recommonded, because it can significantly reduce bundle size of your app.

import Vue from 'vue'
import NaiveUI from 'naive-ui'
import hljs from 'highlight.js/lib/highlight'
import cpp from 'highlight.js/lib/languages/cpp'

hljs.registerLanguage('cpp', cpp)
Vue.use(NaiveUI)
NaiveUI.setHljs(hljs)

Demos

basic