primevue-mirror/doc/skeleton/ImportDoc.vue

17 lines
343 B
Vue

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