feat: hidden footer
This commit is contained in:
parent
dd1fd62a0c
commit
a1f691a613
1 changed files with 7 additions and 1 deletions
|
|
@ -2,6 +2,9 @@
|
|||
import { ref } from 'vue';
|
||||
import AppBox from './app/AppBox.vue';
|
||||
|
||||
defineProps<{
|
||||
hiddenFooter?: boolean;
|
||||
}>();
|
||||
const imageUrl = defineModel<string>('imageUrl', {
|
||||
required: false,
|
||||
default: '',
|
||||
|
|
@ -84,7 +87,10 @@ function change(e: Event) {
|
|||
></q-btn>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row items-center justify-end q-py-sm q-px-md bordered-t">
|
||||
<div
|
||||
class="row items-center justify-end q-py-sm q-px-md bordered-t"
|
||||
v-if="!hiddenFooter"
|
||||
>
|
||||
<q-btn
|
||||
dense
|
||||
unelevated
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue