16 lines
284 B
Vue
16 lines
284 B
Vue
<script setup lang="ts">
|
|
import { config } from './list.cfg'
|
|
|
|
defineProps<{ data: any[] }>()
|
|
const modelValue = defineModel<any | null>()
|
|
</script>
|
|
|
|
<template>
|
|
<PubMyUiDataTable
|
|
v-model="modelValue"
|
|
v-bind="config"
|
|
select-mode="single"
|
|
:rows="data"
|
|
/>
|
|
</template>
|