15 lines
191 B
Vue
15 lines
191 B
Vue
<script setup lang="ts">
|
|
import { config } from './list-cfg'
|
|
|
|
defineProps<{
|
|
data: any[]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<PubMyUiDataTable
|
|
v-bind="config"
|
|
:rows="data"
|
|
/>
|
|
</template>
|