2020-04-10 20:32:12 +02:00
|
|
|
<template>
|
2022-02-10 02:18:57 +01:00
|
|
|
<div id="app" class="bg-gray-900 font-sans flex flex-col grow items-center justify-center">
|
2022-02-12 15:15:27 +01:00
|
|
|
<v-notification class="fixed z-40 right-0 bottom-0 mb-3 mr-3"></v-notification>
|
2022-12-04 23:54:07 +01:00
|
|
|
<div class="w-64 sm:w-72 md: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>
|
|
|
|
export default {
|
2022-02-12 15:15:27 +01:00
|
|
|
components: {
|
2022-12-04 23:54:07 +01:00
|
|
|
VNotification: () => import('../components/VNotification.vue'),
|
2022-02-12 15:15:27 +01:00
|
|
|
},
|
2020-04-10 20:32:12 +02:00
|
|
|
};
|
|
|
|
</script>
|