mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-31 04:00:21 -07:00
7 lines
128 B
JavaScript
7 lines
128 B
JavaScript
export const utilMixins = {
|
|
commputed: {
|
|
isMobile() {
|
|
return this.$vuetify.breakpoint.name === "xs";
|
|
},
|
|
},
|
|
};
|