Last active
November 5, 2024 17:59
-
-
Save mhelf/5fd5ce82c6876e14903f88a2a7747d87 to your computer and use it in GitHub Desktop.
Hello world api endpoint in nuxt3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default defineEventHandler((event) => { | |
return { | |
hello: 'world' | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment