ModuleAuthorNote.vue 723 B

12345678910111213141516171819202122232425262728
  1. <script setup lang="ts">
  2. </script>
  3. <template>
  4. <NTip
  5. n="teal"
  6. class="py-4"
  7. >
  8. <p class="font-bold">
  9. Note for module authors:
  10. </p>
  11. Nuxt DevTools is in early preview and the API is subject to change.
  12. Which means the setup in this template is only presenting the current state of the API.
  13. We suggest following closely to the changes in the <NLink
  14. href="https://github.com/nuxt/devtools"
  15. target="_blank"
  16. >
  17. nuxt/devtools
  18. </NLink> repository.<br>
  19. The UI components are coming from <NLink
  20. href="https://github.com/nuxt/devtools/tree/main/packages/devtools-ui-kit"
  21. target="_blank"
  22. >
  23. @nuxt/devtools-ui-kit
  24. </NLink>.
  25. </NTip>
  26. </template>