Init.
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<script lang="ts">
|
||||
|
||||
import CustomHeader from "~/components/layout/customHeader.vue";
|
||||
import CustomFooter from "~/components/layout/customFooter.vue";
|
||||
|
||||
export default {
|
||||
name: 'DefaultLayout',
|
||||
components: {CustomFooter, CustomHeader},
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<v-layout>
|
||||
|
||||
<CustomHeader/>
|
||||
|
||||
<v-main>
|
||||
<slot/>
|
||||
</v-main>
|
||||
|
||||
<NotificationBaseComponent/>
|
||||
|
||||
<CustomFooter/>
|
||||
|
||||
</v-layout>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user