We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a08f234 + 1dfbf2c commit d6ca0f9Copy full SHA for d6ca0f9
src/components/DsfrTable/DsfrTable.vue
@@ -5,15 +5,14 @@ import DsfrTableHeaders from './DsfrTableHeaders.vue'
5
import { type DsfrTableHeadersProps } from './DsfrTableHeaders.vue'
6
7
const props = withDefaults(defineProps<{
8
- title?: string
+ title: string
9
headers?: DsfrTableHeadersProps
10
rows?:(DsfrTableRowProps | string[])[]
11
noCaption?: boolean
12
pagination?: boolean
13
defaultCurrentPage?: number
14
defaultOptionSelected?: number
15
}>(), {
16
- title: undefined,
17
headers: () => [],
18
rows: () => [],
19
defaultCurrentPage: 1,
0 commit comments