mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
New Nuxt docs
This commit is contained in:
parent
6798b17cf4
commit
18576538e7
15 changed files with 452 additions and 61 deletions
26
doc/nuxt/configuration/ComposablesDoc.vue
Normal file
26
doc/nuxt/configuration/ComposablesDoc.vue
Normal file
|
@ -0,0 +1,26 @@
|
|||
<template>
|
||||
<DocSectionText v-bind="$attrs">
|
||||
<p>
|
||||
Determines the composables to use, when default value is ignored or set as <i>*</i> all composables are imported.
|
||||
</p>
|
||||
<DocSectionCode :code="code1" importCode hideToggleCode hideCodeSandbox hideStackBlitz />
|
||||
</DocSectionText>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
code1: {
|
||||
basic: `
|
||||
primevue: {
|
||||
composables: {
|
||||
include: ['useStyle']
|
||||
}
|
||||
}
|
||||
`
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue