mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
16 lines
260 B
Vue
16 lines
260 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>
|