25 lines
583 B
Vue
25 lines
583 B
Vue
<template>
|
|
<v-row>
|
|
<v-col class="text-center">
|
|
<blockquote class="blockquote">
|
|
“First, solve the problem. Then, write the code.”
|
|
<footer>
|
|
<small>
|
|
<em>—John Johnson</em>
|
|
</small>
|
|
</footer>
|
|
</blockquote>
|
|
</v-col>
|
|
</v-row>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'DashboardPage',
|
|
layout ({ $auth }) {
|
|
// Ref: https://firebase.google.com/docs/reference/js/v8/firebase.auth.Auth#currentuser
|
|
return $auth.currentUser.emailVerified ? 'default' : 'unverified'
|
|
}
|
|
}
|
|
</script>
|