Home

Issue: 1739

problems with beforeRouteEnter

[issue link]

Hi, I have a code:

<script>
  import ContactList from 'src/components/ContactList/ContactList.vue';

  export default {
    components: {
      'kr-contact-list': ContactList,
    },
    beforeRouteEnter(to, from, next) {
      next('/login');
    }
  };
</script>

and I get a error:
Cannot read property 'serverRendered' of undefined
how to fix it? should I use middleware for it?

This question is available on Nuxt.js community (#c1560)