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

41 lines
611 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">
2025-10-18 02:39:25 +00:00
<a @click="emit('click')">
2025-10-18 02:08:22 +00:00
<h2>{{ title }}</h2>
2025-10-18 03:16:34 +00:00
<img
:src="image"
:alt="title"
>
2025-10-18 02:08:22 +00:00
</a>
</div>
2024-01-13 02:00:15 +00:00
</template>
2025-10-18 02:39:25 +00:00
<script setup>
const emit = defineEmits(['click'])
defineProps({
title: { type: String, required: true },
image: { type: String, required: true },
})
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>