Add guide for CDN, menu reorg

This commit is contained in:
Cagatay Civici 2024-01-23 23:21:13 +03:00
parent 438eae57b5
commit d27c3bd5b2
19 changed files with 410 additions and 23 deletions

20
doc/cdn/ComponentDoc.vue Normal file
View file

@ -0,0 +1,20 @@
<template>
<DocSectionText v-bind="$attrs">
<p>Include the component to use with a script tag.</p>
</DocSectionText>
<DocSectionCode :code="code" hideToggleCode hideCodeSandbox hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
<script src="https://unpkg.com/primevue/calendar/calendar.min.js"><\/script>
`
}
};
}
};
</script>