171 lines
4.8 KiB
Vue
171 lines
4.8 KiB
Vue
|
|
<script setup>
|
||
|
|
import avatar1 from '@images/avatars/avatar-1.png'
|
||
|
|
import avatar2 from '@images/avatars/avatar-2.png'
|
||
|
|
import avatar3 from '@images/avatars/avatar-3.png'
|
||
|
|
import pdf from '@images/icons/project-icons/pdf.png'
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<VCard title="Outlined Timeline">
|
||
|
|
<VCardText>
|
||
|
|
<VTimeline
|
||
|
|
side="end"
|
||
|
|
align="start"
|
||
|
|
line-inset="8"
|
||
|
|
truncate-line="start"
|
||
|
|
density="compact"
|
||
|
|
class="v-timeline--variant-outlined"
|
||
|
|
>
|
||
|
|
<!-- SECTION Timeline Item: Flight -->
|
||
|
|
<VTimelineItem
|
||
|
|
dot-color="rgb(var(--v-theme-surface))"
|
||
|
|
size="x-small"
|
||
|
|
>
|
||
|
|
<template #icon>
|
||
|
|
<VIcon
|
||
|
|
icon="tabler-circle"
|
||
|
|
color="primary"
|
||
|
|
size="16"
|
||
|
|
/>
|
||
|
|
</template>
|
||
|
|
<!-- 👉 Header -->
|
||
|
|
<div class="d-flex justify-space-between align-center gap-2 flex-wrap mb-2">
|
||
|
|
<span class="app-timeline-title">
|
||
|
|
12 Invoices have been paid
|
||
|
|
</span>
|
||
|
|
<span class="app-timeline-meta">12 min ago</span>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- 👉 Content -->
|
||
|
|
<div class="app-timeline-text mt-1">
|
||
|
|
Invoices have been paid to the company
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="d-inline-flex align-center timeline-chip mt-2">
|
||
|
|
<img
|
||
|
|
:src="pdf"
|
||
|
|
height="20"
|
||
|
|
class="me-2"
|
||
|
|
alt="img"
|
||
|
|
>
|
||
|
|
<span class="app-timeline-text font-weight-medium">
|
||
|
|
invoice.pdf
|
||
|
|
</span>
|
||
|
|
</div>
|
||
|
|
</VTimelineItem>
|
||
|
|
<!-- !SECTION -->
|
||
|
|
|
||
|
|
<!-- SECTION Timeline Item: Interview Schedule -->
|
||
|
|
<VTimelineItem
|
||
|
|
size="x-small"
|
||
|
|
dot-color="rgb(var(--v-theme-surface))"
|
||
|
|
>
|
||
|
|
<template #icon>
|
||
|
|
<VIcon
|
||
|
|
icon="tabler-circle"
|
||
|
|
color="success"
|
||
|
|
size="16"
|
||
|
|
/>
|
||
|
|
</template>
|
||
|
|
<!-- 👉 Header -->
|
||
|
|
<div class="d-flex justify-space-between align-center flex-wrap mb-2">
|
||
|
|
<div class="app-timeline-title">
|
||
|
|
Client Meeting
|
||
|
|
</div>
|
||
|
|
<span class="app-timeline-meta">45 min ago</span>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="app-timeline-text mt-1">
|
||
|
|
Project meeting with john @10:15am
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- 👉 Person -->
|
||
|
|
<div class="d-flex justify-space-between align-center flex-wrap">
|
||
|
|
<!-- 👉 Avatar & Personal Info -->
|
||
|
|
<div class="d-flex align-center mt-2">
|
||
|
|
<VAvatar
|
||
|
|
size="32"
|
||
|
|
class="me-2"
|
||
|
|
:image="avatar1"
|
||
|
|
/>
|
||
|
|
<div class="d-flex flex-column">
|
||
|
|
<p class="text-sm font-weight-medium text-medium-emphasis mb-0">
|
||
|
|
Lester McCarthy (Client)
|
||
|
|
</p>
|
||
|
|
<span class="text-sm">CEO of Pixinvent</span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</VTimelineItem>
|
||
|
|
<!-- !SECTION -->
|
||
|
|
|
||
|
|
<!-- SECTION Design Review -->
|
||
|
|
<VTimelineItem
|
||
|
|
size="x-small"
|
||
|
|
dot-color="rgb(var(--v-theme-surface))"
|
||
|
|
>
|
||
|
|
<template #icon>
|
||
|
|
<VIcon
|
||
|
|
icon="tabler-circle"
|
||
|
|
color="info"
|
||
|
|
size="16"
|
||
|
|
/>
|
||
|
|
</template>
|
||
|
|
<!-- 👉 Header -->
|
||
|
|
<div class="d-flex justify-space-between align-center flex-wrap mb-2">
|
||
|
|
<span class="app-timeline-title">
|
||
|
|
Create a new project for client
|
||
|
|
</span>
|
||
|
|
<span class="app-timeline-meta">2 Day Ago</span>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- 👉 Content -->
|
||
|
|
<p class="app-timeline-text mt-1 mb-2">
|
||
|
|
6 team members in a project
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<div class="v-avatar-group demo-avatar-group">
|
||
|
|
<VAvatar :size="40">
|
||
|
|
<VImg :src="avatar1" />
|
||
|
|
<VTooltip
|
||
|
|
activator="parent"
|
||
|
|
location="top"
|
||
|
|
>
|
||
|
|
John Doe
|
||
|
|
</VTooltip>
|
||
|
|
</VAvatar>
|
||
|
|
|
||
|
|
<VAvatar :size="40">
|
||
|
|
<VImg :src="avatar2" />
|
||
|
|
<VTooltip
|
||
|
|
activator="parent"
|
||
|
|
location="top"
|
||
|
|
>
|
||
|
|
Jennie Obrien
|
||
|
|
</VTooltip>
|
||
|
|
</VAvatar>
|
||
|
|
|
||
|
|
<VAvatar :size="40">
|
||
|
|
<VImg :src="avatar3" />
|
||
|
|
<VTooltip
|
||
|
|
activator="parent"
|
||
|
|
location="top"
|
||
|
|
>
|
||
|
|
Peter Harper
|
||
|
|
</VTooltip>
|
||
|
|
</VAvatar>
|
||
|
|
|
||
|
|
<VAvatar
|
||
|
|
:size="40"
|
||
|
|
:color="$vuetify.theme.current.dark ? '#373b50' : '#eeedf0'"
|
||
|
|
>
|
||
|
|
+3
|
||
|
|
</VAvatar>
|
||
|
|
</div>
|
||
|
|
</VTimelineItem>
|
||
|
|
<!-- !SECTION -->
|
||
|
|
</VTimeline>
|
||
|
|
</VCardText>
|
||
|
|
</VCard>
|
||
|
|
</template>
|