vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
684 B
23 lines
684 B
7 years ago
|
import Vue from 'vue'
|
||
|
import antd from 'vue-antd-ui'
|
||
|
Vue.use(antd)
|
||
|
/* eslint-disable global-require */
|
||
|
if (typeof window !== 'undefined') {
|
||
|
global.window.resizeTo = (width, height) => {
|
||
|
global.window.innerWidth = width || global.window.innerWidth
|
||
|
global.window.innerHeight = height || global.window.innerHeight
|
||
|
global.window.dispatchEvent(new Event('resize'))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// The built-in requestAnimationFrame and cancelAnimationFrame not working with jest.runFakeTimes()
|
||
|
// https://github.com/facebook/jest/issues/5147
|
||
|
global.requestAnimationFrame = function (cb) {
|
||
|
return setTimeout(cb, 0)
|
||
|
}
|
||
|
|
||
|
global.cancelAnimationFrame = function (cb) {
|
||
|
return clearTimeout(cb, 0)
|
||
|
}
|
||
|
|