mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-03 04:21:34 +08:00
15 lines
302 B
JavaScript
15 lines
302 B
JavaScript
import { Vue, router, i18n, hljs } from './init'
|
|
import demoRouterView from './demoRouterView'
|
|
import NaiveUI from '../lib/index'
|
|
import '../lib/styles/index.css'
|
|
import './styles/markdown.scss'
|
|
|
|
Vue.use(NaiveUI)
|
|
NaiveUI.setHljs(hljs)
|
|
|
|
new Vue({
|
|
...demoRouterView,
|
|
i18n,
|
|
router
|
|
}).$mount('#app')
|