mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
38 lines
788 B
JavaScript
38 lines
788 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router/lazy'
|
|
import './theme/index.less'
|
|
import Antd from 'ant-design-vue'
|
|
import Viser from 'viser-vue'
|
|
import axios from 'axios'
|
|
import '@/mock'
|
|
import store from './store'
|
|
import PouchDB from 'pouchdb'
|
|
import 'animate.css/source/animate.css'
|
|
import VueI18n from 'vue-i18n'
|
|
|
|
Vue.prototype.$axios = axios
|
|
Vue.config.productionTip = false
|
|
Vue.use(Viser)
|
|
Vue.use(Antd)
|
|
Vue.use(VueI18n)
|
|
|
|
const i18n = new VueI18n({
|
|
locale: 'CN',
|
|
fallbackLocale: 'US',
|
|
silentFallbackWarn: true
|
|
})
|
|
|
|
new Vue({
|
|
router,
|
|
store,
|
|
i18n,
|
|
render: h => h(App),
|
|
mounted () {
|
|
let db = new PouchDB('adminDb')
|
|
db.get('currUser').then(doc => {
|
|
this.$store.commit('account/setUser', doc.user)
|
|
})
|
|
},
|
|
}).$mount('#app')
|