mirror of
https://github.com/Kuingsmile/PicList.git
synced 2026-05-06 20:42:57 +08:00
12 lines
254 B
Vue
12 lines
254 B
Vue
<template>
|
|
<div class="relative rounded-lg border border-border bg-bg-secondary shadow-sm" :class="p1 ? 'p-1' : 'p-4'">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const { p1 = false } = defineProps<{
|
|
p1?: boolean
|
|
}>()
|
|
</script>
|