Pedidos stepper #80

Merged
jsegarra merged 16 commits from wbuezas/hedera-web-mindshore:feature/PedidosStepper into 4922-vueMigration 2024-09-03 14:06:02 +00:00
2 changed files with 8 additions and 2 deletions
Showing only changes of commit 6631be401b - Show all commits

View File

@ -351,6 +351,7 @@ onMounted(async () => {
color="accent"
jsegarra marked this conversation as resolved Outdated

La fecha está en inglés

La fecha está en inglés

Corregido.

Commit: 020e0afc96

Corregido. Commit: https://gitea.verdnatura.es/verdnatura/hedera-web/commit/020e0afc96427ca1bf6db03dba58e4b1f38b8b27
:locale="localeDates"
jsegarra marked this conversation as resolved Outdated

Empieza en domingo, a nivel de empresa podría servir, pero decara a un usuario final, puede llevar a confusión

Empieza en domingo, a nivel de empresa podría servir, pero decara a un usuario final, puede llevar a confusión

Agregado.

Commit: 975495113d

Agregado. Commit: https://gitea.verdnatura.es/verdnatura/hedera-web/commit/975495113d2d7b2c5257d3f9b3d9f7e17f1cb7a8
first-day-of-week="1"
:minimal="appStore.isMobile"
/>
</div>
<!-- Address step -->

View File

@ -2,13 +2,12 @@ import { defineStore } from 'pinia';
import { jApi } from 'boot/axios';
import useNotify from 'src/composables/useNotify.js';
import { i18n } from 'src/boot/i18n';
import { useQuasar } from 'quasar';
const { notify } = useNotify();
export const useAppStore = defineStore('hedera', {
state: () => ({
title: null,
subtitle: null,
imageUrl: '',
useRightDrawer: false,
rightDrawerOpen: false,
@ -134,5 +133,11 @@ export const useAppStore = defineStore('hedera', {
notify('orderLoadedIntoBasket', 'positive');

Porque no usamos pinia?

Porque no usamos pinia?
}
}
},
getters: {
isMobile() {
const $q = useQuasar();
return $q?.screen?.width <= 768;
}
}
});