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

21 lines
378 B
Vue

<template>
<DocSectionText v-bind="$attrs">
<p>Creates a new project from scratch with PrimeVue.</p>
</DocSectionText>
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
prime vue create
`
}
};
}
};
</script>