mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-22 20:36:43 +00:00
27 lines
416 B
Vue
27 lines
416 B
Vue
<template>
|
|
<q-page>
|
|
<!-- TODO Authentication different page -->
|
|
|
|
<div class="row q-mx-md">
|
|
<div class="col-xl-4 col-lg-6 col-md-12 q-pa-xs">
|
|
<q-card bordered>
|
|
<q-card-section>
|
|
Empty / TODO
|
|
</q-card-section>
|
|
</q-card>
|
|
</div>
|
|
|
|
</div>
|
|
</q-page>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'Data',
|
|
data() {
|
|
return {}
|
|
},
|
|
}
|
|
</script>
|