Vue Example: Composable Tables

<script setup lang="ts">
import ProductsTable from './components/ProductsTable.vue'
import UsersTable from './components/UsersTable.vue'
</script>

<template>
  <main class="page">
    <UsersTable />
    <ProductsTable />
  </main>
</template>