TopicPanel.vue
439 Bytes
<script lang="ts" setup>
import { topicTableColumn } from '../device.profile.data';
import { BasicTable, useTable } from '/@/components/Table';
const [register] = useTable({
title: 'Topic',
columns: topicTableColumn,
bordered: true,
showTableSetting: true,
});
</script>
<template>
<section class="bg-gray-100 p-4 dark:bg-dark-900 w-full h-full">
<BasicTable @register="register" />
</section>
</template>