Skip to content

Commit

Permalink
layout
Browse files Browse the repository at this point in the history
  • Loading branch information
callebtc committed Dec 18, 2024
1 parent 867f843 commit 8baf6d2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/layouts/BlankLayout.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<template>
<q-layout view="lHh Lpr lFf">
<q-page-container>
<router-view />
</q-page-container>
</q-layout>
</template>

<script>
import { defineComponent, ref } from "vue";
export default defineComponent({
name: "BlankLayout",
mixins: [windowMixin],
components: {},
});
</script>

0 comments on commit 8baf6d2

Please sign in to comment.