mirror of
https://github.com/Molunerfinn/PicGo.git
synced 2024-04-21 10:31:33 +00:00
24 lines
577 B
JavaScript
24 lines
577 B
JavaScript
import Vue from 'vue'
|
|
import axios from 'axios'
|
|
import ElementUI from 'element-ui'
|
|
import 'element-ui/lib/theme-chalk/index.css'
|
|
import App from './App'
|
|
import router from './router'
|
|
import store from './store'
|
|
import db from '../datastore/index'
|
|
import './assets/fonts/iconfont.css'
|
|
Vue.use(ElementUI)
|
|
|
|
if (!process.env.IS_WEB) Vue.use(require('vue-electron'))
|
|
Vue.http = Vue.prototype.$http = axios
|
|
Vue.prototype.$db = db
|
|
Vue.config.productionTip = false
|
|
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
components: { App },
|
|
router,
|
|
store,
|
|
template: '<App/>'
|
|
}).$mount('#app')
|