primevue-mirror/apps/showcase/doc/nuxt/configuration/ComposablesDoc.vue

25 lines
511 B
Vue
Raw Permalink Normal View History

2023-10-15 20:57:44 +00:00
<template>
<DocSectionText v-bind="$attrs">
2023-10-15 21:00:28 +00:00
<p>Determines the composables to use, when default value is ignored or set as <i>*</i> all composables are imported.</p>
2024-01-30 08:16:35 +00:00
<DocSectionCode :code="code1" importCode hideToggleCode hideStackBlitz />
2023-10-15 20:57:44 +00:00
</DocSectionText>
</template>
<script>
export default {
data() {
return {
code1: {
basic: `
2024-01-30 08:16:35 +00:00
primevue: {
2023-10-15 20:57:44 +00:00
composables: {
include: ['useStyle']
}
}
`
}
2023-10-15 21:00:28 +00:00
};
2023-10-15 20:57:44 +00:00
}
};
</script>