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.
26 lines
401 B
26 lines
401 B
3 years ago
|
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;
|
||
|
},
|
||
|
}
|
||
|
|
||
|
}
|