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">
|
|
|
|
<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>
|
|
|
|
export default {
|
|
|
|
computed: {
|
2021-04-10 19:45:11 +02:00
|
|
|
}
|
2020-04-10 20:32:12 +02:00
|
|
|
};
|
|
|
|
</script>
|