Showcase updates

This commit is contained in:
tugcekucukoglu 2024-04-18 17:22:30 +03:00
parent fcf8599cfa
commit b2ec54e364
134 changed files with 6160 additions and 1238 deletions

18
doc/select/ImportDoc.vue Normal file
View file

@ -0,0 +1,18 @@
<template>
<DocSectionText v-bind="$attrs"></DocSectionText>
<DocSectionCode :code="code" hideToggleCode importCode hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
import Select from 'primevue/select';
`
}
};
}
};
</script>