primevue-mirror/apps/showcase/doc/skeleton/ImportDoc.vue

19 lines
329 B
Vue

<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" hideToggleCode importCode hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
import Skeleton from 'primevue/skeleton';
`
}
};
}
};
</script>