cleanup of vue component

This commit is contained in:
Brian 2022-10-26 13:14:01 -06:00
parent 91063a69d9
commit 886cdc47e6
Signed by: brian
GPG Key ID: DE1A5390A3B84CD8

View File

@ -5,15 +5,11 @@ import { useAttrs, useSlots, reactive, ref, computed, watch, onBeforeMount, onMo
import { Head, Link, useForm, usePage } from '@inertiajs/inertia-vue3'
import AppLayout from '@/Layouts/AppLayout.vue'
const emit = defineEmits([])
const attrs = useAttrs()
const slots = useSlots()
const props = defineProps({})
// defines
defineEmits([])
// variables
const props = defineProps({})
// computed properties
@ -48,7 +44,7 @@ onUnmounted(() => {
<AppLayout title="${1:TITLE}">
<template #header>${1:TITLE}</template>
<div class="col-span-6">
<div class="col-span-12">
<!-- content goes here -->
</div>
</AppLayout>