2024-06-13 14:55:49 +07:00
|
|
|
<script setup lang="ts"></script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2024-06-13 15:16:24 +07:00
|
|
|
<q-page-sticky position="bottom-right" :offset="[30, 18]">
|
2024-06-14 13:41:32 +07:00
|
|
|
<q-fab
|
|
|
|
|
id="btn-add"
|
|
|
|
|
padding="xs"
|
|
|
|
|
icon="mdi-plus"
|
|
|
|
|
direction="up"
|
|
|
|
|
color="primary"
|
|
|
|
|
>
|
2024-06-13 14:55:49 +07:00
|
|
|
<slot />
|
|
|
|
|
|
|
|
|
|
<!-- <q-fab-action padding="xs" color="primary" icon="mdi-account-plus" /> -->
|
|
|
|
|
</q-fab>
|
|
|
|
|
</q-page-sticky>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped></style>
|