mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
16 lines
319 B
JavaScript
16 lines
319 B
JavaScript
import enquireJs from 'enquire.js'
|
|
|
|
const enquireScreen = function (call) {
|
|
const hanlder = {
|
|
match: function () {
|
|
call && call(true)
|
|
},
|
|
unmatch: function () {
|
|
call && call(false)
|
|
}
|
|
}
|
|
enquireJs.register('only screen and (max-width: 767.99px)', hanlder)
|
|
}
|
|
|
|
export default enquireScreen
|