import { useAttrs, useSlots, reactive, ref, computed, watch, onBeforeMount, onMounted, onBeforeUpdate, onBeforeUnmount, onUnmounted, provide, inject } from 'vue' 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({}) // variables // computed properties // watchers // lifecycle hooks onBeforeMount(() => { // }) onMounted(() => { // }) onBeforeUpdate(() => { // }) onBeforeUnmount(() => { // }) onUnmounted(() => { // }) // methods ]]> vcomp