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