mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-01-27 08:28:13 -05:00
39 lines
833 B
TypeScript
39 lines
833 B
TypeScript
import Vue from 'vue'
|
|
import App from './renderer/App.vue'
|
|
import router from './renderer/router'
|
|
import db from '#/datastore/index'
|
|
import ElementUI from 'element-ui'
|
|
import { webFrame } from 'electron'
|
|
import 'element-ui/lib/theme-chalk/index.css'
|
|
import VueLazyLoad from 'vue-lazyload'
|
|
import axios from 'axios'
|
|
import mainMixin from './renderer/utils/mainMixin'
|
|
import bus from '@/utils/bus'
|
|
|
|
webFrame.setVisualZoomLevelLimits(1, 1)
|
|
webFrame.setLayoutZoomLevelLimits(0, 0)
|
|
|
|
Vue.config.productionTip = false
|
|
Vue.prototype.$builtInPicBed = [
|
|
'smms',
|
|
'weibo',
|
|
'imgur',
|
|
'qiniu',
|
|
'tcyun',
|
|
'upyun',
|
|
'aliyun',
|
|
'github'
|
|
]
|
|
Vue.prototype.$db = db
|
|
Vue.prototype.$http = axios
|
|
Vue.prototype.$bus = bus
|
|
|
|
Vue.use(ElementUI)
|
|
Vue.use(VueLazyLoad)
|
|
Vue.mixin(mainMixin)
|
|
|
|
new Vue({
|
|
router,
|
|
render: h => h(App)
|
|
}).$mount('#app')
|