9 lines
188 B
Vue
9 lines
188 B
Vue
<script setup lang="ts">
|
|
import { config } from './index.cfg'
|
|
import { data } from './index.data'
|
|
</script>
|
|
|
|
<template>
|
|
<PubMyUiDataTable v-bind="config" :rows="data" />
|
|
</template>
|