| 123456789101112131415161718 |
- <template>
- <NuxtLayout name="blank">
- <div>OK</div>
- </NuxtLayout>
- </template>
- <script setup lang="ts">
- /**
- * Disable the default layout, the page will use the layout defined with <NuxtLayout />
- * @see https://nuxt.com/docs/guide/directory-structure/layouts#overriding-a-layout-on-a-per-page-basis
- */
- definePageMeta({
- name: 'public_ping_page',
- layout: false,
- })
- </script>
- <style scoped lang="scss"></style>
|