ping.vue 422 B

123456789101112131415161718
  1. <template>
  2. <NuxtLayout name="blank">
  3. <div>OK</div>
  4. </NuxtLayout>
  5. </template>
  6. <script setup lang="ts">
  7. /**
  8. * Disable the default layout, the page will use the layout defined with <NuxtLayout />
  9. * @see https://nuxt.com/docs/guide/directory-structure/layouts#overriding-a-layout-on-a-per-page-basis
  10. */
  11. definePageMeta({
  12. name: 'public_ping_page',
  13. layout: false,
  14. })
  15. </script>
  16. <style scoped lang="scss"></style>