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