mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 20:29:35 +02:00
13 lines
359 B
JavaScript
13 lines
359 B
JavaScript
export const Mixins = {
|
|
methods: {
|
|
checkWindowSize() {
|
|
this.mobile = window.innerWidth <= 600
|
|
},
|
|
AddWindowListener() {
|
|
window.addEventListener('resize', this.checkWindowSize)
|
|
},
|
|
RemoveWindowListener() {
|
|
window.removeEventListener('resize', this.checkWindowSize)
|
|
}
|
|
}
|
|
} |