Files
tgCrewAdmin/src/components/pnPageCard.vue
CCTVcalc 04ea1f83c6
All checks were successful
continuous-integration/drone/push Build is passing
fix_error
2025-08-14 19:21:21 +03:00

19 lines
380 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 q-ma-none q-px-md flex items-center">
<slot name="footer"/>
</div>
</template>
<script setup lang="ts">
</script>
<style>
</style>