Add menu translations #82

Merged
jsegarra merged 10 commits from wbuezas/hedera-web-mindshore:feature/AddMenuTranslations into 4922-vueMigration 2024-09-09 20:19:32 +00:00
1 changed files with 8 additions and 9 deletions
Showing only changes of commit 929623949b - Show all commits

View File

@ -17,6 +17,14 @@ const rows = ref([]);
const ticket = ref({});
const orderId = ref(null);
onBeforeMount(() => {
appStore.check();
});
onMounted(async () => {
orderId.value = route.params.id || basketOrderId.value;
if (orderId.value) await fetchData();
});
const getOrder = async () => {
try {
const [data] = await jApi.query(
@ -88,15 +96,6 @@ const fetchData = async () => {
await getItems();
await getOrder();
jsegarra marked this conversation as resolved Outdated

en Lilium, usamos const entityId, no?

en Lilium, usamos const entityId, no?

Esto pertenece a la otra PR

Esto pertenece a la otra PR
};
onBeforeMount(() => {
appStore.check();
});
onMounted(async () => {
orderId.value = route.params.id || basketOrderId.value;
await fetchData();
});
</script>
<template>