18 lines
360 B
Vue
18 lines
360 B
Vue
|
<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>
|