Initial commit
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<script setup>
|
||||
import data from '@/views/demos/forms/tables/data-table/datatable'
|
||||
|
||||
const headers = [
|
||||
{
|
||||
title: 'ID',
|
||||
sortable: false,
|
||||
key: 'id',
|
||||
},
|
||||
{
|
||||
title: 'NAME',
|
||||
key: 'fullName',
|
||||
},
|
||||
{
|
||||
title: 'EMAIL',
|
||||
key: 'email',
|
||||
},
|
||||
{
|
||||
title: 'DATE',
|
||||
key: 'startDate',
|
||||
},
|
||||
{
|
||||
title: 'EXPERIENCE',
|
||||
key: 'experience',
|
||||
},
|
||||
{
|
||||
title: 'AGE',
|
||||
key: 'age',
|
||||
},
|
||||
]
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<VDataTable
|
||||
:headers="headers"
|
||||
:items="data"
|
||||
:items-per-page="5"
|
||||
/>
|
||||
</template>
|
||||
Reference in New Issue
Block a user