mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
New Nuxt docs
This commit is contained in:
parent
6798b17cf4
commit
18576538e7
15 changed files with 452 additions and 61 deletions
29
doc/nuxt/DownloadDoc.vue
Normal file
29
doc/nuxt/DownloadDoc.vue
Normal file
|
@ -0,0 +1,29 @@
|
|||
<template>
|
||||
<DocSectionText v-bind="$attrs">
|
||||
<p>
|
||||
The <a href="https://www.npmjs.com/package/nuxt-primevue" target="_blank" rel="noopener noreferrer">nuxt-prime</a> package is the official module by PrimeTek.
|
||||
</p>
|
||||
</DocSectionText>
|
||||
<DocSectionCode :code="code" hideToggleCode hideCodeSandbox hideStackBlitz />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
code: {
|
||||
basic: `
|
||||
# Using npm
|
||||
npm install --save-dev nuxt-primevue
|
||||
|
||||
# Using yarn
|
||||
yarn add --dev nuxt-primevue
|
||||
|
||||
# Using pnpm
|
||||
pnpm add -D nuxt-primevue
|
||||
`
|
||||
}
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue