1
0
Fork 0
mirror of https://github.com/primefaces/primevue.git synced 2025-05-08 16:37:15 +00:00
primevue-mirror/doc/scrollpanel/ImportDoc.vue
Tuğçe Küçükoğlu fc61cdad4f Code section fixes
2023-02-28 20:40:48 +03:00

16 lines
349 B
Vue

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