primevue-mirror/apps/showcase/doc/clt/DownloadDoc.vue

21 lines
440 B
Vue
Raw Normal View History

2024-05-27 15:50:04 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-10-31 07:56:10 +00:00
<p>PrimeCLT is available for download on <a href="https://www.npmjs.com/package/primeclt">npm registry</a>.</p>
2024-05-27 15:50:04 +00:00
</DocSectionText>
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
npm install -g primeclt
`
}
2024-05-30 09:00:53 +00:00
};
2024-05-27 15:50:04 +00:00
}
};
</script>