You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
 
 
 
 

16 lines
448 B

<script setup>
import { Head, Link } from '@inertiajs/vue3';
import Layout from '@/Layouts/Layout.vue';
import Editor from '@/Components/Editor/Editor.vue';
</script>
<template>
<Head title="Home"/>
<Layout :footer="false">
<template #content>
<div class="w-full h-screen flex justify-center px-[13.5%]">
<Editor @update="(data) => {}" />
</div>
</template>
</Layout>
</template>