Skip to content

Commit

Permalink
fix: rename from table to data-table
Browse files Browse the repository at this point in the history
META DATA: @toantranmei
  • Loading branch information
toantranmei committed May 4, 2024
1 parent 4ef830f commit a92296e
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions playground/pages/table.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<script setup lang="ts">
const people = [
{
id: 1,
name: "Lindsay Walton",
title: "Front-end Developer",
email: "lindsay.walton@example.com",
role: "Member",
},
{
id: 2,
name: "Courtney Henry",
title: "Designer",
email: "courtney.henry@example.com",
role: "Admin",
},
{
id: 3,
name: "Tom Cook",
title: "Director of Product",
email: "tom.cook@example.com",
role: "Member",
},
{
id: 4,
name: "Whitney Francis",
title: "Copywriter",
email: "whitney.francis@example.com",
role: "Admin",
},
{
id: 5,
name: "Leonard Krasner",
title: "Senior Designer",
email: "leonard.krasner@example.com",
role: "Owner",
},
{
id: 6,
name: "Floyd Miles",
title: "Principal Designer",
email: "floyd.miles@example.com",
role: "Member",
},
];
</script>

<template>
<MeiDataTable :rows="people" />
</template>
File renamed without changes.

0 comments on commit a92296e

Please sign in to comment.