[Vuejs]-Nuxt 2 โ€“ Do not run fetch while in SSR mode

0๐Ÿ‘

โœ…

As shown here, you can use fetchOnServer: false.

<script>
export default {
  async fetch() {
    this.posts = await this.$http.$get('https://api.nuxtjs.dev/posts')
  },
  fetchOnServer: false,
}
</script>

Leave a comment