mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-02-26 09:43:19 -05:00
8 lines
128 B
JavaScript
8 lines
128 B
JavaScript
|
|
export const utilMixins = {
|
||
|
|
commputed: {
|
||
|
|
isMobile() {
|
||
|
|
return this.$vuetify.breakpoint.name === "xs";
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|