Skip to content
Snippets Groups Projects
Commit c4d24260 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

refactor: add more slots to ATable component

parent f088c496
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
<div class="aura-table-scroller">
<div ref="tableWrapperEl" class="aura-table-wrapper" v-bind="attrs">
<table class="aura-table">
<slot name="tableStart" />
<thead>
<slot name="thead">
<tr>
......@@ -11,13 +12,14 @@
</thead>
<tbody>
<slot name="body">
<template v-if="items">
<slot v-if="items" name="items" :items="items">
<tr v-for="(item, index) in items" :key="index">
<slot :obj="item" :index="index" />
</tr>
</template>
</slot>
</slot>
</tbody>
<slot name="tableEnd" />
</table>
<slot name="footer">
......@@ -70,10 +72,13 @@ defineOptions({
})
defineSlots<{
default(props: { obj: T; index: number }): any
items(props: { items: T[] }): any
thead(): any
header(): any
body(): any
footer(): any
tableStart(): any
tableEnd(): any
}>()
const attrs = useAttrs()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment