mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-03-07 05:35:51 -05:00
26 lines
401 B
JavaScript
26 lines
401 B
JavaScript
![]() |
export default {
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
windowWidth: window.innerWidth,
|
||
|
}
|
||
|
},
|
||
|
|
||
|
created() {
|
||
|
window.addEventListener("resize", this.onResize);
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
onResize() {
|
||
|
this.windowWidth = window.innerWidth;
|
||
|
},
|
||
|
},
|
||
|
|
||
|
computed: {
|
||
|
isMobile() {
|
||
|
return this.windowWidth <= 767.98;
|
||
|
},
|
||
|
}
|
||
|
|
||
|
}
|