Nuxt/test/fixtures/basic/pages/router-guard.vue
pooya parsa e7cc2757c3 refactor: update eslint-config to 1.x
Co-authored-by: Alexander Lichter <manniL@gmx.net>
2019-07-10 15:15:49 +04:30

12 lines
164 B
Vue

<template>
<div>Router Guard</div>
</template>
<script>
export default {
beforeRouteEnter (to, from, next) {
next({ path: '/async-data' })
}
}
</script>