mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 17:13:56 +00:00
16 lines
227 B
Vue
16 lines
227 B
Vue
|
<template>
|
||
|
<div>
|
||
|
Forbidden
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
definePageMeta({
|
||
|
// This is an example of inline middleware
|
||
|
middleware: () => {
|
||
|
console.log('Strictly forbidden.')
|
||
|
return false
|
||
|
}
|
||
|
})
|
||
|
</script>
|