primevue-mirror/apps/showcase/doc/nuxt/VerifyDoc.vue

24 lines
554 B
Vue
Raw Permalink Normal View History

2023-12-26 18:28:43 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-10-27 10:54:37 +00:00
<p>The nuxt-primevue module registers the components automatically with tree-shaking support so you may start using them instantly.</p>
2023-12-26 18:28:43 +00:00
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-10-27 10:54:37 +00:00
<Button label="Verify" />
2023-12-26 18:28:43 +00:00
</div>
2024-01-30 08:16:35 +00:00
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
2023-12-26 18:28:43 +00:00
</template>
<script>
export default {
data() {
return {
code: {
basic: `
2024-10-27 10:54:37 +00:00
<Button label="Verify" />
2023-12-26 18:28:43 +00:00
`
}
};
}
};
</script>