Skip to content

Instantly share code, notes, and snippets.

@jesperlandberg
Created October 24, 2017 07:04
Show Gist options
  • Save jesperlandberg/d630ef84070f4a7ba8eac9992c9dd8e6 to your computer and use it in GitHub Desktop.
Save jesperlandberg/d630ef84070f4a7ba8eac9992c9dd8e6 to your computer and use it in GitHub Desktop.
Dynamic route
export default {
async asyncData ({ params, error, payload }) {
if (payload) return { content: payload }
else return {
content: 'something else'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment