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

21 lines
378 B
Vue
Raw Normal View History

2024-05-27 15:50:04 +00:00
<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: `
2024-05-28 11:34:33 +00:00
prime vue create
2024-05-27 15:50:04 +00:00
`
}
};
}
};
</script>