Write better Vue and Nuxt code.

A highly curated collection of practical tips, advanced patterns, and performance tweaks for Vue & Nuxt.

useTip.ts
const { tip } = useAsyncData(
  'awesome-trick',
  () => queryContent().findOne()
)

Popular Topics
vue
nuxt
vite

You can expose your Nuxt development server to the internet thanks to local tunneling. All you have to do is run the Nuxt development server with the `--tunnel` flag.

npx nuxt dev --tunnel