2023-10-15 20:57:44 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
2023-12-26 18:28:43 +00:00
|
|
|
<p>
|
2024-10-31 07:56:10 +00:00
|
|
|
PrimeVue is available for download on <a href="https://www.npmjs.com/package/primevue">npm registry</a> along with the official
|
2024-10-27 10:54:37 +00:00
|
|
|
<a href="https://www.npmjs.com/package/@primevue/nuxt-module" target="_blank" rel="noopener noreferrer">@primevue/nuxt-module</a>.
|
2023-12-26 18:28:43 +00:00
|
|
|
</p>
|
2023-10-15 20:57:44 +00:00
|
|
|
</DocSectionText>
|
2024-01-30 08:16:35 +00:00
|
|
|
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
2023-10-15 20:57:44 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
code: {
|
|
|
|
basic: `
|
|
|
|
# Using npm
|
2024-10-27 10:54:37 +00:00
|
|
|
npm install primevue @primevue/themes
|
2024-07-03 10:06:06 +00:00
|
|
|
npm install --save-dev @primevue/nuxt-module
|
2023-10-15 20:57:44 +00:00
|
|
|
|
|
|
|
# Using yarn
|
2024-10-27 10:54:37 +00:00
|
|
|
yarn add primevue @primevue/themes
|
2024-07-03 10:06:06 +00:00
|
|
|
yarn add --dev @primevue/nuxt-module
|
2023-10-15 20:57:44 +00:00
|
|
|
|
|
|
|
# Using pnpm
|
2024-10-27 10:54:37 +00:00
|
|
|
pnpm add primevue @primevue/themes
|
2024-07-03 10:06:06 +00:00
|
|
|
pnpm add -D @primevue/nuxt-module
|
2023-10-15 20:57:44 +00:00
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|