21 lines
369 B
Vue
21 lines
369 B
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>Adds PrimeVue to your existing project.</p>
|
|
</DocSectionText>
|
|
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
code: {
|
|
basic: `
|
|
prime vue install
|
|
`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|