munch-ease-frontend/src/components/ActionItem.vue

37 lines
515 B
Vue
Raw Normal View History

2024-01-13 02:00:15 +00:00
<template>
2025-10-18 02:08:22 +00:00
<div class="card">
<a @click="$emit('click')">
<h2>{{ title }}</h2>
<img :src="image" :alt="name" />
</a>
</div>
2024-01-13 02:00:15 +00:00
</template>
<script>
export default {
2025-10-18 02:08:22 +00:00
name: 'ActionItem',
props: ['title', 'image'],
2024-01-13 02:00:15 +00:00
}
</script>
<style scoped>
img {
2025-10-18 02:08:22 +00:00
width: 100%;
height: auto;
2024-01-13 02:00:15 +00:00
}
.card {
2025-10-18 02:08:22 +00:00
display: inline-block;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
margin-bottom: 10px;
width: 20em;
margin: 1em 1ex;
2024-01-13 02:00:15 +00:00
}
.card:hover {
2025-10-18 02:08:22 +00:00
background-color: #ccc;
2024-01-13 02:00:15 +00:00
}
2025-10-18 02:08:22 +00:00
</style>