24 lines
609 B
Vue
24 lines
609 B
Vue
<template>
|
|
<div>
|
|
<Table columns="1fr">
|
|
<HeaderRow>
|
|
<HeaderCell>Client ID</HeaderCell>
|
|
</HeaderRow>
|
|
<ContentRow>
|
|
</ContentRow>
|
|
</Table>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import HeaderRow from "~/components/ui/table/HeaderRow.vue";
|
|
import Table from "~/components/ui/table/Table.vue";
|
|
import HeaderCell from "~/components/ui/table/HeaderCell.vue";
|
|
import ContentCell from "~/components/ui/table/ContentCell.vue";
|
|
import ContentRow from "~/components/ui/table/ContentRow.vue";
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |