primevue-mirror/doc/installation/DownloadDoc.vue

23 lines
519 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-02-28 08:29:30 +00:00
npm install primevue primeicons
// with yarn
2023-03-03 12:15:58 +00:00
yarn add primevue primeicons`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>