primevue-mirror/doc/installation/DownloadDoc.vue

23 lines
497 B
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>PrimeVue is available for download at <a href="https://www.npmjs.com/package/primevue">npm</a>.</p>
</DocSectionText>
2023-02-28 17:40:48 +00:00
<DocSectionCode :code="code" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
2023-02-28 08:29:30 +00:00
</template>
<script>
export default {
data() {
return {
code: {
2023-03-02 12:23:54 +00:00
basic: `// with npm
2023-04-18 15:05:44 +00:00
npm install primevue
2023-02-28 08:29:30 +00:00
// with yarn
2023-04-18 15:05:44 +00:00
yarn add primevue`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>