primevue-mirror/doc/clt/InstallDoc.vue

21 lines
365 B
Vue
Raw 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: `
prime vue add
`
}
};
}
};
</script>