mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
1a7b570c82
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
26 lines
464 B
Vue
26 lines
464 B
Vue
<script setup>
|
|
const hasIssue = ref(true)
|
|
|
|
const fixIssue = (error) => {
|
|
hasIssue.value = false
|
|
error.value = null
|
|
}
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtErrorBoundary>
|
|
<throw-error v-if="hasIssue" />
|
|
<div v-else>
|
|
Component is working ^_^
|
|
</div>
|
|
|
|
<template #error="{ error }">
|
|
Component failed to Render -_-
|
|
<button @click="fixIssue(error)">
|
|
(fix the issue)
|
|
</button>
|
|
</template>
|
|
</NuxtErrorBoundary>
|
|
</template>
|