mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
16 lines
258 B
Vue
16 lines
258 B
Vue
<template>
|
|
<div>
|
|
you should not see me
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: [
|
|
(to) => {
|
|
return abortNavigation(to.query.error ? new Error(to.query.error.toString()) : undefined)
|
|
}
|
|
]
|
|
})
|
|
</script>
|