20 lines
367 B
Vue
20 lines
367 B
Vue
<script setup lang="ts">
|
|
import { cols, funcComponent, funcHtml, funcParsed, header, keys } from './list-cfg'
|
|
|
|
defineProps<{
|
|
data: any[]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<PubMyUiDataTable
|
|
:rows="data"
|
|
:cols="cols"
|
|
:header="header"
|
|
:keys="keys"
|
|
:func-parsed="funcParsed"
|
|
:func-html="funcHtml"
|
|
:func-component="funcComponent"
|
|
/>
|
|
</template>
|