Vistas sección pedidos #77

Merged
jsegarra merged 14 commits from wbuezas/hedera-web-mindshore:feature/Pedidos into 4922-vueMigration 2024-08-16 06:52:22 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit b66c47955c - Show all commits

View File

@ -1,7 +1,3 @@
<template>
<router-view />
</template>
<script setup>
import { useAppStore } from 'stores/app';
jsegarra marked this conversation as resolved Outdated

Movemos la etiqueta script setup al principio del archivo

Movemos la etiqueta script setup al principio del archivo

Modificado.

Commit: b66c47955c

Modificado. Commit: https://gitea.verdnatura.es/verdnatura/hedera-web/commit/b66c47955c6bdbd5c92137450b4d5bff3f67d3d5
import { onBeforeMount } from 'vue';
@ -9,3 +5,7 @@ const appStore = useAppStore();
onBeforeMount(() => appStore.init());
</script>
<template>
<router-view />
</template>