naive-ui/demo/dev-index.js
07akioni 8c10ccdef5 refactor: upgrade to vue3, make it work first
there are quite a lot of things to finish
1. Vue.prototype
2. $scopedSlots
3. functional
4. i18n
5. virtual scroll
...
2020-09-08 22:04:45 +08:00

26 lines
635 B
JavaScript

import { createApp } from 'vue'
import { installDemoComponents, i18n } from './init'
import debugRouteMixin from './routes/debug-route-mixin'
import hljs from './hljs'
import DemoRouterView from './DemoRouterView'
import naive from '../src/index'
import '../src/_styles/index.scss'
import './font'
import { routes, childRoutes } from './routes/routes'
import createDemoRouter from './routes/router'
debugRouteMixin(routes, childRoutes)
naive.setHljs(hljs)
const app = createApp(DemoRouterView)
const router = createDemoRouter(app, routes)
app.use(router)
app.use(naive)
app.use(i18n)
installDemoComponents(app)
app.mount('#app')