19 lines
396 B
Vue
19 lines
396 B
Vue
<script setup lang="ts"></script>
|
|
|
|
<template>
|
|
<q-page-sticky position="bottom-right" :offset="[30, 18]">
|
|
<q-fab
|
|
id="btn-add"
|
|
padding="xs"
|
|
icon="mdi-plus"
|
|
direction="up"
|
|
color="primary"
|
|
>
|
|
<slot />
|
|
|
|
<!-- <q-fab-action padding="xs" color="primary" icon="mdi-account-plus" /> -->
|
|
</q-fab>
|
|
</q-page-sticky>
|
|
</template>
|
|
|
|
<style scoped></style>
|