增加登陆界面

This commit is contained in:
YunaiV
2021-11-25 07:57:23 +08:00
parent d12912080e
commit 55ee2fcad7
11 changed files with 1086 additions and 2 deletions

View File

@ -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