You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: ['auth'],
|
|
})
|
|
|
|
const user = useUser()
|
|
|
|
const deleteUser = async () => {
|
|
await userDelete()
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<button @click="deleteUser()">Delete Account</button>
|
|
</div>
|
|
</template>
|