17 lines
327 B
JavaScript
17 lines
327 B
JavaScript
|
|
import store from '@/store'
|
||
|
|
import util from '@/libs/util'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
install (Vue, options) {
|
||
|
|
// 快速打印 log
|
||
|
|
Vue.prototype.$log = util.log
|
||
|
|
// 快速记录日志
|
||
|
|
Vue.prototype.$logAdd = function (info) {
|
||
|
|
store.commit('d2adminLogAdd', {
|
||
|
|
type: 'log',
|
||
|
|
info
|
||
|
|
})
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|