1
0
Fork 0
mirror of https://github.com/primefaces/primevue.git synced 2025-05-08 16:37:15 +00:00
primevue-mirror/doc/nuxt/configuration/ComposablesDoc.vue
GitHub Actions Bot 4b1c58d771 Code Format
2023-10-15 21:00:28 +00:00

24 lines
528 B
Vue

<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>