primevue-mirror/doc/overlaypanel/ImportDoc.vue

18 lines
348 B
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" hideToggleCode import hideCodeSandbox hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
import OverlayPanel from 'primevue/overlaypanel';`
}
};
}
};
</script>