Skip to content

Instantly share code, notes, and snippets.

@adamkpurdy
Last active August 10, 2018 01:04
Show Gist options
  • Select an option

  • Save adamkpurdy/351c836ba768e19e6e8c5e2c6c085353 to your computer and use it in GitHub Desktop.

Select an option

Save adamkpurdy/351c836ba768e19e6e8c5e2c6c085353 to your computer and use it in GitHub Desktop.
<script>
export default {
name: 'SomeRoutePage',
preFetch({ store, redirect }) {
store.state.$firebase.auth().onAuthStateChanged((user) => {
if (!user) redirect('/login');
});
},
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment