14 lines
348 B
Vue
14 lines
348 B
Vue
|
|
<script setup lang="ts"></script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<q-page-sticky position="bottom-right" :offset="[40, 18]">
|
||
|
|
<q-fab 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>
|