mirror of
https://github.com/bitinflow/ui-old.git
synced 2026-03-13 13:45:57 +00:00
15 lines
212 B
Vue
15 lines
212 B
Vue
<template>
|
|
<div class="bg-white text-black dark:bg-base-700 dark:text-white rounded shadow mb-8">
|
|
<slot/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Card"
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |