primevue-mirror/doc/dynamicdialog/pt/PTDoc.vue

35 lines
708 B
Vue
Raw Normal View History

2023-04-28 08:54:50 +00:00
<template>
<DocSectionText v-bind="$attrs"></DocSectionText>
<DocSectionCode :code="code" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
2023-08-16 13:58:31 +00:00
basic: `<DynamicDialog
2023-04-28 08:54:50 +00:00
:pt="{
root: { class: 'w-12 sm:w-9 md:w-6' }
}"
/>`,
2023-08-16 13:58:31 +00:00
options: `<template>
2023-04-28 08:54:50 +00:00
<DynamicDialog
:pt="{
root: { class: 'w-12 sm:w-9 md:w-6' }
}"
/>
</template>`,
2023-08-16 13:58:31 +00:00
composition: `<template>
2023-04-28 08:54:50 +00:00
<DynamicDialog
:pt="{
root: { class: 'w-12 sm:w-9 md:w-6' }
}"
/>
</template>`
}
};
}
};
</script>