14 lines
231 B
Vue
14 lines
231 B
Vue
<template>
|
|
<NuxtLayout>
|
|
<NuxtLoadingIndicator :height="4" />
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|
|
|
|
<script setup>
|
|
useHead({
|
|
title: 'Indefiti',
|
|
meta: [{ name: 'robots', content: 'noindex,nofollow' }],
|
|
})
|
|
</script>
|