feat(navBar): refs #7632 isLoading #844
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix-front#844
Loading…
Reference in New Issue
No description provided.
Delete Branch "7632-axios_isLoading"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -28,2 +30,3 @@
stateQuery.remove(config);
const isSaveRequest = method === 'patch';
const isSaveRequest = config.method === 'patch';
Crear la variable y solo usarla en el if es lo mismo que ponerla dentro del if no?
El método post también hace save no?
La variable ya estaba de antes, lo cambio.
No se la logica de pq alguien puso solo patch
@ -104,6 +114,9 @@ const pinnedModulesRef = ref();
.q-header {
background-color: var(--vn-section-color);
}
.no-visible {
Si solo tiene una propiedad, es lo mismo que hacer style, no?
También podemos definir la clase global y usarla.
Como gustes
@ -0,0 +10,4 @@
const stateQueryStore = useStateQueryStore();
const { add, isLoading, remove, reset } = useStateQueryStore();
const firstQuery = { url: 'myQuery' };
comentario: definimos baseQuery y luego ....baseQuery en cada variable?
Esto lo hemos hecho al definir columnas en VnTable, no?