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