mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
19 lines
507 B
Vue
19 lines
507 B
Vue
<template>
|
|
<DocSectionText v-bind="$attrs" />
|
|
<DocSectionCode :code="code" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
code: {
|
|
basic: `import DataTable from 'primevue/datatable';
|
|
import Column from 'primevue/column';
|
|
import ColumnGroup from 'primevue/columngroup'; // optional
|
|
import Row from 'primevue/row'; // optional`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|