diff --git a/apps/showcase/doc/passthrough/PCPrefixDoc.vue b/apps/showcase/doc/passthrough/PCPrefixDoc.vue new file mode 100644 index 000000000..cf655e90d --- /dev/null +++ b/apps/showcase/doc/passthrough/PCPrefixDoc.vue @@ -0,0 +1,74 @@ + + + Section names that start with the pc prefix indicate that the element is a PrimeVue component not a DOM element. + + + + + + + + diff --git a/apps/showcase/pages/passthrough/index.vue b/apps/showcase/pages/passthrough/index.vue index 9b37fa0b8..c69c6ca2c 100644 --- a/apps/showcase/pages/passthrough/index.vue +++ b/apps/showcase/pages/passthrough/index.vue @@ -21,6 +21,7 @@ import CustomCSSDoc from '@/doc/passthrough/CustomCSSDoc.vue'; import DeclarativeDoc from '@/doc/passthrough/DeclarativeDoc.vue'; import GlobalDoc from '@/doc/passthrough/GlobalDoc.vue'; import LifecycleDoc from '@/doc/passthrough/LifecycleDoc.vue'; +import PCPrefixDoc from '@/doc/passthrough/PCPrefixDoc.vue'; import UsePassThroughDoc from '@/doc/passthrough/UsePassThroughDoc.vue'; export default { @@ -37,6 +38,11 @@ export default { label: 'Declarative', component: DeclarativeDoc }, + { + id: 'pcprefix', + label: 'PC Prefix', + component: PCPrefixDoc + }, { id: 'lifecycle', label: 'Lifecycle',
Section names that start with the pc prefix indicate that the element is a PrimeVue component not a DOM element.