forked from verdnatura/hedera-web
Fix teleport submit problem
This commit is contained in:
parent
887ee8aea4
commit
594b17b4ab
|
@ -184,7 +184,6 @@ defineExpose({
|
||||||
v-if="!loading"
|
v-if="!loading"
|
||||||
ref="addressFormRef"
|
ref="addressFormRef"
|
||||||
class="column full-width q-gutter-y-xs"
|
class="column full-width q-gutter-y-xs"
|
||||||
@submit="submit()"
|
|
||||||
>
|
>
|
||||||
<span class="text-h6 text-bold">
|
<span class="text-h6 text-bold">
|
||||||
{{ title }}
|
{{ title }}
|
||||||
|
@ -208,12 +207,12 @@ defineExpose({
|
||||||
<QBtn
|
<QBtn
|
||||||
v-if="defaultActions"
|
v-if="defaultActions"
|
||||||
:label="t('save')"
|
:label="t('save')"
|
||||||
type="submit"
|
|
||||||
:icon="showBottomActions ? undefined : 'check'"
|
:icon="showBottomActions ? undefined : 'check'"
|
||||||
rounded
|
rounded
|
||||||
no-caps
|
no-caps
|
||||||
flat
|
flat
|
||||||
:disabled="!showBottomActions && !updatedColumns.length"
|
:disabled="!showBottomActions && !updatedColumns.length"
|
||||||
|
@click="submit()"
|
||||||
/>
|
/>
|
||||||
<slot name="actions" />
|
<slot name="actions" />
|
||||||
</component>
|
</component>
|
||||||
|
|
|
@ -11,7 +11,8 @@ export const useAppStore = defineStore('hedera', {
|
||||||
imageUrl: '',
|
imageUrl: '',
|
||||||
useRightDrawer: false,
|
useRightDrawer: false,
|
||||||
rightDrawerOpen: false,
|
rightDrawerOpen: false,
|
||||||
basketOrderId: null
|
basketOrderId: null,
|
||||||
|
isHeaderMounted: false
|
||||||
}),
|
}),
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
|
|
Loading…
Reference in New Issue