Pedidos stepper #80
|
@ -351,6 +351,7 @@ onMounted(async () => {
|
|||
color="accent"
|
||||
jsegarra marked this conversation as resolved
Outdated
|
||||
:locale="localeDates"
|
||||
jsegarra marked this conversation as resolved
Outdated
jsegarra
commented
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
wbuezas
commented
Agregado. Commit: Agregado.
Commit: https://gitea.verdnatura.es/verdnatura/hedera-web/commit/975495113d2d7b2c5257d3f9b3d9f7e17f1cb7a8
|
||||
first-day-of-week="1"
|
||||
:minimal="appStore.isMobile"
|
||||
/>
|
||||
</div>
|
||||
<!-- Address step -->
|
||||
|
|
|
@ -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');
|
||||
jsegarra
commented
Porque no usamos pinia? Porque no usamos pinia?
|
||||
}
|
||||
}
|
||||
},
|
||||
getters: {
|
||||
isMobile() {
|
||||
const $q = useQuasar();
|
||||
return $q?.screen?.width <= 768;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
La fecha está en inglés
Corregido.
Commit:
020e0afc96