mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-06 23:25:06 +08:00
增加登陆界面
This commit is contained in:
@ -1,5 +1,31 @@
|
||||
import App from './App'
|
||||
|
||||
// 全局 Mixin
|
||||
import mixin from './common/mixin/mixin'
|
||||
Vue.mixin(mixin)
|
||||
|
||||
// 全局 Util
|
||||
import {
|
||||
msg,
|
||||
isLogin,
|
||||
debounce,
|
||||
throttle,
|
||||
prePage,
|
||||
date
|
||||
} from '@/common/js/util'
|
||||
Vue.prototype.$util = {
|
||||
msg,
|
||||
isLogin,
|
||||
debounce,
|
||||
throttle,
|
||||
prePage,
|
||||
date
|
||||
}
|
||||
|
||||
// 全局 Store
|
||||
import store from './store'
|
||||
Vue.prototype.$store = store
|
||||
|
||||
// #ifndef VUE3
|
||||
import Vue from 'vue'
|
||||
Vue.config.productionTip = false
|
||||
|
Reference in New Issue
Block a user