Skip to content

[Feature Request] table component #11

@raminjafary

Description

@raminjafary

Feature Summary

I intend to implement a table component with the following feature:

  • Pass theme options as props

How might the table component look like?

<script>
  import { Table } from "svelte-admin";

  const props = {
   bordered: true,
   dark: false,
   responsive: true,
  // ...
}
</script>

  <Table {...props}>
      <thead>
          <tr>
             <!-- content -->
          </tr>
      </thead>
      <tbody>
         <tr>
           <!-- content -->
         </tr>
     </tbody>
  <Table>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions