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

19 lines
331 B
Vue
Raw Permalink Normal View History

2024-09-17 11:34:59 +00:00
<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" hideToggleCode importCode hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
import IftaLabel from 'primevue/iftalabel';
`
}
};
}
};
</script>