Skip to content

Instantly share code, notes, and snippets.

@yann-yinn
Created November 3, 2017 16:48
Show Gist options
  • Save yann-yinn/d5981f2fe38a97f571781f72e3303de1 to your computer and use it in GitHub Desktop.
Save yann-yinn/d5981f2fe38a97f571781f72e3303de1 to your computer and use it in GitHub Desktop.
get url GET params from nuxt.js asyncData method
// destructuring
async asyncData({ route }) {
console.log(route);
}
// without destructuring
async asyncData(allParams) {
console.log(allParams.route);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment