18 lines
284 B
Vue
18 lines
284 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
|
|
v-bind="config"
|
|
:rows="props.data"
|
|
/>
|
|
</template>
|