19 lines
302 B
Vue
19 lines
302 B
Vue
<script setup lang="ts">
|
|
import { config } from './list-cfg'
|
|
|
|
// Types
|
|
import type { VclaimSepData } from '~/models/vclaim'
|
|
|
|
const props = defineProps<{
|
|
data: VclaimSepData[]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<PubMyUiDataTable
|
|
:rows="props.data"
|
|
v-bind="config"
|
|
v-on="$attrs"
|
|
/>
|
|
</template>
|