2022-09-09 20:41:18 +00:00
|
|
|
<template>
|
2023-03-06 06:55:17 +00:00
|
|
|
<DocComponent
|
|
|
|
title="Vue Dynamic Dialog Component"
|
|
|
|
header="Dynamic Dialog"
|
|
|
|
description="Dynamic Dialog is a Dialog container to display content in an overlay window."
|
|
|
|
:componentDocs="docs"
|
|
|
|
:apiDocs="['DynamicDialog', 'Dialog', 'DialogService', 'DynamicDialogOptions']"
|
|
|
|
/>
|
2022-09-09 20:41:18 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-02-28 08:29:30 +00:00
|
|
|
import AccessibilityDoc from '@/doc/dynamicdialog/AccessibilityDoc';
|
|
|
|
import BasicDoc from '@/doc/dynamicdialog/BasicDoc';
|
|
|
|
import CloseDialogDoc from '@/doc/dynamicdialog/CloseDialogDoc';
|
|
|
|
import CustomizingDialogDoc from '@/doc/dynamicdialog/CustomizingDialogDoc';
|
|
|
|
import DialogServiceDoc from '@/doc/dynamicdialog/DialogServiceDoc';
|
|
|
|
import ImportDoc from '@/doc/dynamicdialog/ImportDoc';
|
|
|
|
import OpenDialogDoc from '@/doc/dynamicdialog/OpenDialogDoc';
|
|
|
|
import PassingDataDoc from '@/doc/dynamicdialog/PassingDataDoc';
|
|
|
|
import UsageDoc from '@/doc/dynamicdialog/UsageDoc';
|
2022-09-09 20:41:18 +00:00
|
|
|
|
|
|
|
export default {
|
2023-02-28 08:29:30 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
docs: [
|
|
|
|
{
|
|
|
|
id: 'import',
|
|
|
|
label: 'Import',
|
|
|
|
component: ImportDoc
|
2022-09-09 20:41:18 +00:00
|
|
|
},
|
2023-02-28 08:29:30 +00:00
|
|
|
{
|
|
|
|
id: 'dialogservice',
|
|
|
|
label: 'Dialog Service',
|
|
|
|
component: DialogServiceDoc
|
2022-09-09 20:41:18 +00:00
|
|
|
},
|
2023-02-28 08:29:30 +00:00
|
|
|
{
|
|
|
|
id: 'usage',
|
|
|
|
label: 'Usage',
|
|
|
|
component: UsageDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'basic',
|
|
|
|
label: 'Basic',
|
|
|
|
component: BasicDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'opendialog',
|
|
|
|
label: 'Opening a Dialog',
|
|
|
|
component: OpenDialogDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'closedialog',
|
|
|
|
label: 'Closing a Dialog',
|
|
|
|
component: CloseDialogDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'passingdata',
|
|
|
|
label: 'Passing Data',
|
|
|
|
component: PassingDataDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'customizingdata',
|
|
|
|
label: 'Customizing Dialog',
|
|
|
|
component: CustomizingDialogDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'accessibility',
|
|
|
|
label: 'Accessibility',
|
|
|
|
component: AccessibilityDoc
|
2022-09-09 20:41:18 +00:00
|
|
|
}
|
2023-02-28 08:29:30 +00:00
|
|
|
]
|
|
|
|
};
|
2022-09-09 20:41:18 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|