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

22 lines
493 B
Vue
Raw Permalink Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs" />
2024-01-30 08:16:35 +00:00
<DocSectionCode :code="code" hideToggleCode importCode hideStackBlitz />
2023-02-28 08:29:30 +00:00
</template>
<script>
export default {
data() {
return {
code: {
2023-09-22 12:54:14 +00:00
basic: `
import DataTable from 'primevue/datatable';
2023-03-02 12:25:33 +00:00
import Column from 'primevue/column';
import ColumnGroup from 'primevue/columngroup'; // optional
2023-09-22 12:54:14 +00:00
import Row from 'primevue/row'; // optional
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>