adrema/resources/js/layouts/Full.vue

17 lines
470 B
Vue
Raw Normal View History

2020-04-10 20:32:12 +02:00
<template>
2021-04-11 16:33:33 +02:00
<div id="app" class="bg-gray-900 font-sans flex flex-col flex-grow items-center justify-center">
2022-01-02 12:42:46 +01:00
<notification class="fixed z-40 right-0 bottom-0 mb-3 mr-3"></notification>
2021-04-11 16:33:33 +02:00
<div class="w-96 bg-gray-800 rounded-xl overflow-hidden shadow-lg">
2021-04-10 19:45:11 +02:00
<slot></slot>
</div>
2020-04-10 20:32:12 +02:00
</div>
</template>
<script>
2022-01-02 12:42:46 +01:00
import Notification from '../components/Notification.vue';
2020-04-10 20:32:12 +02:00
export default {
2022-01-02 12:42:46 +01:00
components: { Notification },
2020-04-10 20:32:12 +02:00
};
</script>