You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.1 KiB
Vue
61 lines
1.1 KiB
Vue
<template>
|
|
<router-link
|
|
class="event-link"
|
|
:to="{ name: 'event-show', params: { event_id: '1' } }"
|
|
>
|
|
<div class="event-card -shadow">
|
|
<span class="eyebrow">@{{ event.time }} on {{ event.date }}</span>
|
|
<h4 class="title">{{ event.title }}</h4>
|
|
<BaseIcon name="users" />
|
|
<span>{{ event.attendees.length }} attending</span>
|
|
</div>
|
|
</router-link>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
event: {
|
|
id: 1,
|
|
title: 'Beach Clean up',
|
|
date: 'Tues Aug 19, 2018',
|
|
time: '6:00',
|
|
attendees: [
|
|
{
|
|
id: 'abc123',
|
|
name: 'Adam Jahr'
|
|
},
|
|
{
|
|
id: 'abc122',
|
|
name: 'Drew Bednar'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.event-card {
|
|
padding: 20px;
|
|
margin-bottom: 24px;
|
|
transition: all 0.2s linear;
|
|
cursor: pointer;
|
|
}
|
|
.event-card:hover {
|
|
transform: scale(1.01);
|
|
box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.2), 0 1px 15px 0 rgba(0, 0, 0, 0.19);
|
|
}
|
|
.event-card > .title {
|
|
margin: 0;
|
|
}
|
|
|
|
.event-link {
|
|
color: black;
|
|
text-decoration: none;
|
|
font-weight: 100;
|
|
}
|
|
</style>
|