movie-night-web/app/components/common/card.vue

18 lines
186 B
Vue
Raw Normal View History

<script lang="ts" setup>
</script>
<template>
<div class="card">
<slot/>
</div>
</template>
<style scoped>
.card {
padding: 1rem;
background-color: lightgray;
}
</style>