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

24 lines
554 B
Vue

<template>
<DocSectionText v-bind="$attrs">
<p>The nuxt-primevue module registers the components automatically with tree-shaking support so you may start using them instantly.</p>
</DocSectionText>
<div class="card flex justify-center">
<Button label="Verify" />
</div>
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
<Button label="Verify" />
`
}
};
}
};
</script>