uptime-kuma/src/mixins/mobile.js
2021-08-10 15:02:46 +08:00

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;
},
}
}