primevue-mirror/apps/showcase/doc/clt/InstallDoc.vue

21 lines
369 B
Vue
Raw Permalink Normal View History

2024-05-27 15:50:04 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Adds PrimeVue to your existing project.</p>
</DocSectionText>
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
2024-05-28 11:34:33 +00:00
prime vue install
2024-05-27 15:50:04 +00:00
`
}
};
}
};
</script>