Add page header to experiments
This commit is contained in:
parent
7f0cd17b38
commit
ee5c907a72
|
@ -1,23 +1,31 @@
|
||||||
<template>
|
<template>
|
||||||
<MkStickyContainer>
|
<MkStickyContainer>
|
||||||
|
<template #header
|
||||||
|
><MkPageHeader
|
||||||
|
:actions="headerActions"
|
||||||
|
:tabs="headerTabs"
|
||||||
|
:display-back-button="true"
|
||||||
|
/></template>
|
||||||
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
|
||||||
<FormSuspense :p="init">
|
<FormSuspense :p="init">
|
||||||
<FormSwitch
|
<FormSwitch
|
||||||
v-model="enableExperimentalPostEditing"
|
v-model="enableExperimentalPostEditing"
|
||||||
@update:modelValue="save"
|
@update:modelValue="save"
|
||||||
class="_formBlock"
|
class="_formBlock"
|
||||||
>
|
>
|
||||||
<template #label
|
<template #label>
|
||||||
><i class="ph-pencil-line ph-bold ph-lg"></i
|
<i class="ph-pencil-line ph-bold ph-lg"></i>
|
||||||
>{{ i18n.ts._experiments.enableExperimentalPostEditing
|
{{ i18n.ts._experiments.enableExperimentalPostEditing }}
|
||||||
}}<span class="level alpha"
|
<span class="level alpha">
|
||||||
>({{ i18n.ts._experiments.alpha }})</span
|
({{ i18n.ts._experiments.alpha }})</span
|
||||||
></template
|
|
||||||
>
|
>
|
||||||
|
</template>
|
||||||
<template #caption>{{
|
<template #caption>{{
|
||||||
i18n.ts._experiments.experimentalPostEditingCaption
|
i18n.ts._experiments.experimentalPostEditingCaption
|
||||||
}}</template>
|
}}</template>
|
||||||
</FormSwitch>
|
</FormSwitch>
|
||||||
</FormSuspense>
|
</FormSuspense>
|
||||||
|
</MkSpacer>
|
||||||
</MkStickyContainer>
|
</MkStickyContainer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -59,6 +67,10 @@ function save() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const headerActions = $computed(() => []);
|
||||||
|
|
||||||
|
const headerTabs = $computed(() => []);
|
||||||
|
|
||||||
definePageMetadata({
|
definePageMetadata({
|
||||||
title: i18n.ts._experiments.title,
|
title: i18n.ts._experiments.title,
|
||||||
icon: "ph-flask ph-bold ph-lg",
|
icon: "ph-flask ph-bold ph-lg",
|
||||||
|
|
Loading…
Reference in New Issue