1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-05 19:41:51 +08:00

fix: fixed require mock bug in production

This commit is contained in:
花裤衩 2020-01-09 20:24:48 +08:00
parent a6bb84b763
commit 255989138d

View File

@ -29,9 +29,8 @@ import * as filters from './filters' // global filters
* please remove it before going online ! ! !
*/
if (process.env.NODE_ENV === 'production') {
import('../mock').then(({ mockXHR }) => {
mockXHR()
})
const { mockXHR } = require('../mock')
mockXHR()
}
Vue.use(Element, {