mirror of
https://github.com/cruip/vuejs-admin-dashboard-template.git
synced 2026-02-04 13:42:27 +08:00
121 lines
3.7 KiB
Vue
121 lines
3.7 KiB
Vue
<template>
|
|
<div class="col-span-full xl:col-span-6 bg-white dark:bg-slate-800 shadow-lg rounded-sm border border-slate-200 dark:border-slate-700">
|
|
<header class="px-5 py-4 border-b border-slate-100 dark:border-slate-700">
|
|
<h2 class="font-semibold text-slate-800 dark:text-slate-100">Customers</h2>
|
|
</header>
|
|
<div class="p-3">
|
|
|
|
<!-- Table -->
|
|
<div class="overflow-x-auto">
|
|
<table class="table-auto w-full">
|
|
<!-- Table header -->
|
|
<thead class="text-xs font-semibold uppercase dark:text-slate-500 bg-slate-50 dark:bg-slate-700 dark:bg-opacity-50">
|
|
<tr>
|
|
<th class="p-2 whitespace-nowrap">
|
|
<div class="font-semibold text-left">Name</div>
|
|
</th>
|
|
<th class="p-2 whitespace-nowrap">
|
|
<div class="font-semibold text-left">Email</div>
|
|
</th>
|
|
<th class="p-2 whitespace-nowrap">
|
|
<div class="font-semibold text-left">Spent</div>
|
|
</th>
|
|
<th class="p-2 whitespace-nowrap">
|
|
<div class="font-semibold text-center">Country</div>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<!-- Table body -->
|
|
<tbody class="text-sm divide-y divide-slate-100 dark:divide-slate-700">
|
|
<tr
|
|
v-for="customer in customers"
|
|
:key="customer.id"
|
|
>
|
|
<td class="p-2 whitespace-nowrap">
|
|
<div class="flex items-center">
|
|
<div class="w-10 h-10 shrink-0 mr-2 sm:mr-3">
|
|
<img class="rounded-full" :src="customer.image" width="40" height="40" :alt="customer.name" />
|
|
</div>
|
|
<div class="font-medium text-slate-800 dark:text-slate-100">{{customer.name}}</div>
|
|
</div>
|
|
</td>
|
|
<td class="p-2 whitespace-nowrap">
|
|
<div class="text-left">{{customer.email}}</div>
|
|
</td>
|
|
<td class="p-2 whitespace-nowrap">
|
|
<div class="text-left font-medium text-green-500">{{customer.spent}}</div>
|
|
</td>
|
|
<td class="p-2 whitespace-nowrap">
|
|
<div class="text-lg text-center">{{customer.location}}</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { ref } from 'vue'
|
|
|
|
import Image01 from '../../images/user-36-05.jpg'
|
|
import Image02 from '../../images/user-36-06.jpg'
|
|
import Image03 from '../../images/user-36-07.jpg'
|
|
import Image04 from '../../images/user-36-08.jpg'
|
|
import Image05 from '../../images/user-36-09.jpg'
|
|
|
|
export default {
|
|
name: 'DashboardCard10',
|
|
setup() {
|
|
const customers = ref([
|
|
{
|
|
id: '0',
|
|
image: Image01,
|
|
name: 'Alex Shatov',
|
|
email: 'alexshatov@gmail.com',
|
|
location: '🇺🇸',
|
|
spent: '$2,890.66',
|
|
},
|
|
{
|
|
id: '1',
|
|
image: Image02,
|
|
name: 'Philip Harbach',
|
|
email: 'philip.h@gmail.com',
|
|
location: '🇩🇪',
|
|
spent: '$2,767.04',
|
|
},
|
|
{
|
|
id: '2',
|
|
image: Image03,
|
|
name: 'Mirko Fisuk',
|
|
email: 'mirkofisuk@gmail.com',
|
|
location: '🇫🇷',
|
|
spent: '$2,996.00',
|
|
},
|
|
{
|
|
id: '3',
|
|
image: Image04,
|
|
name: 'Olga Semklo',
|
|
email: 'olga.s@cool.design',
|
|
location: '🇮🇹',
|
|
spent: '$1,220.66',
|
|
},
|
|
{
|
|
id: '4',
|
|
image: Image05,
|
|
name: 'Burak Long',
|
|
email: 'longburak@gmail.com',
|
|
location: '🇬🇧',
|
|
spent: '$1,890.66',
|
|
},
|
|
])
|
|
|
|
return {
|
|
customers,
|
|
}
|
|
}
|
|
}
|
|
</script> |