22 lines
454 B
Vue
22 lines
454 B
Vue
<template>
|
|
<q-page-sticky position="bottom-right" :offset="[18, 18]">
|
|
<q-btn data-cy="button" rounded color="accent" icon="arrow_forward">
|
|
{{ title }}
|
|
</q-btn>
|
|
</q-page-sticky>
|
|
</template>
|
|
|
|
<script>
|
|
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
name: 'QuasarPageSticky',
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
});
|
|
</script>
|