Files
tgCrewAdmin/src/components/pnPageCard.vue
2025-11-02 10:08:57 +03:00

19 lines
344 B
Vue

<template>
<div
class="flex items-center justify-between q-ma-none q-py-none q-px-md text-white text-h6 no-scroll no-wrap w100"
style="min-height: 48px"
>
<slot name="title"/>
</div>
<slot/>
<div class="bg-white w100">
<slot name="footer"/>
</div>
</template>
<script setup lang="ts">
</script>
<style>
</style>