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