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

37 lines
562 B
Vue
Raw Normal View History

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