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?