remove header actions
This commit is contained in:
parent
265ff5c47f
commit
65e0d752d6
|
@ -19,7 +19,7 @@ const appStore = useAppStore();
|
|||
const route = useRoute();
|
||||
const router = useRouter();
|
||||
const tpv = tpvStore();
|
||||
const { basketOrderId, isHeaderMounted } = storeToRefs(appStore);
|
||||
const { basketOrderId } = storeToRefs(appStore);
|
||||
|
||||
const rows = ref([]);
|
||||
const order = ref({});
|
||||
|
@ -211,29 +211,6 @@ onMounted(async () => {
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<Teleport v-if="isHeaderMounted" to="#actions">
|
||||
<QBtn
|
||||
icon="settings"
|
||||
:label="t('configureOrder')"
|
||||
:to="{ name: 'checkout', params: { id: orderId } }"
|
||||
rounded
|
||||
no-caps
|
||||
/>
|
||||
<QBtn
|
||||
icon="shopping_bag"
|
||||
:label="t('catalog')"
|
||||
:to="{ name: 'catalog' }"
|
||||
rounded
|
||||
no-caps
|
||||
/>
|
||||
<QBtn
|
||||
icon="shopping_cart_checkout"
|
||||
:label="t('checkout')"
|
||||
:to="{ name: 'confirm', params: { id: orderId } }"
|
||||
rounded
|
||||
no-caps
|
||||
/>
|
||||
</Teleport>
|
||||
<QPage class="vn-w-sm">
|
||||
<TicketDetails
|
||||
:rows="rows"
|
||||
|
|
Loading…
Reference in New Issue