38 lines
1.2 KiB
Vue
38 lines
1.2 KiB
Vue
<template>
|
|
<DocPTViewer :docs="docs">
|
|
<Card style="width: 25rem">
|
|
<template #title>Advanced Card</template>
|
|
<template #subtitle>Card subtitle</template>
|
|
<template #content>
|
|
<p class="m-0">
|
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae numquam deserunt quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque
|
|
quas!
|
|
</p>
|
|
</template>
|
|
<template #footer>
|
|
<div class="flex gap-4 mt-1">
|
|
<Button label="Cancel" severity="secondary" outlined class="w-full" />
|
|
<Button label="Save" class="w-full" />
|
|
</div>
|
|
</template>
|
|
</Card>
|
|
</DocPTViewer>
|
|
</template>
|
|
|
|
<script>
|
|
import { getPTOptions } from '@/components/doc/helpers';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
docs: [
|
|
{
|
|
data: getPTOptions('Card'),
|
|
key: 'Card'
|
|
}
|
|
]
|
|
};
|
|
}
|
|
};
|
|
</script>
|