RuralDatabase/apps/web/components/common/frame/v1/index.vue

18 lines
360 B
Vue
Raw Normal View History

2024-06-30 21:39:37 +08:00
<script setup lang="ts">
defineProps<{
title: string
}>()
</script>
<template>
<div class="w-[460px] h-fit relative my-2">
<div class="absolute z-10 text-2xl tracking-wide -top-1 left-14 text-cyan-200">
{{ title }}
</div>
<FrameV1HeaderSvg class="absolute " />
<div class="px-4 pt-16">
<slot />
</div>
</div>
</template>