mirror of
https://github.com/keven1024/015.git
synced 2026-05-26 07:08:02 +00:00
13 lines
289 B
Vue
13 lines
289 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
title?: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="rounded-xl p-5 bg-white/50 backdrop-blur-xl w-full lg:w-200">
|
|
<div v-if="title" class="text-xl font-normal">{{ title }}</div>
|
|
<slot />
|
|
</div>
|
|
</template>
|